Compare commits

...

5 Commits

Author SHA1 Message Date
Dawid Bepierszcz
d1a4d35e20 Merge pull request #357 from originalaidn/missing-music-images
added missing music kit images
2024-11-30 03:35:58 +01:00
originalaidn
415824755e adding latest MVP 2024-11-29 16:05:04 +01:00
originalaidn
5955accadd added missing music kit images 2024-11-23 09:36:44 +01:00
Dawid Bepierszcz
eae091b59a Merge pull request #356 from stefanx111/fix-invariant
fix float parsing to use invariant culture
2024-11-19 17:02:43 +01:00
StefanX
a89593f6a2 fx float parsing to use invariant culture 2024-11-18 21:09:34 +02:00
66 changed files with 307 additions and 26 deletions

View File

@@ -2,6 +2,7 @@
using MySqlConnector; using MySqlConnector;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using CounterStrikeSharp.API.Modules.Utils; using CounterStrikeSharp.API.Modules.Utils;
using System.Globalization;
namespace WeaponPaints; namespace WeaponPaints;
@@ -197,9 +198,9 @@ internal class WeaponSynchronization
if (keyChainParts!.Length == 5 && if (keyChainParts!.Length == 5 &&
uint.TryParse(keyChainParts[0], out uint keyChainId) && uint.TryParse(keyChainParts[0], out uint keyChainId) &&
float.TryParse(keyChainParts[1], out float keyChainOffsetX) && float.TryParse(keyChainParts[1], NumberStyles.Float, CultureInfo.InvariantCulture, out float keyChainOffsetX) &&
float.TryParse(keyChainParts[2], out float keyChainOffsetY) && float.TryParse(keyChainParts[2], NumberStyles.Float, CultureInfo.InvariantCulture, out float keyChainOffsetY) &&
float.TryParse(keyChainParts[3], out float keyChainOffsetZ) && float.TryParse(keyChainParts[3], NumberStyles.Float, CultureInfo.InvariantCulture, out float keyChainOffsetZ) &&
uint.TryParse(keyChainParts[4], out uint keyChainSeed)) uint.TryParse(keyChainParts[4], out uint keyChainSeed))
{ {
// Successfully parsed the values // Successfully parsed the values
@@ -246,11 +247,11 @@ internal class WeaponSynchronization
if (parts.Length != 7 || if (parts.Length != 7 ||
!uint.TryParse(parts[0], out uint stickerId) || !uint.TryParse(parts[0], out uint stickerId) ||
!uint.TryParse(parts[1], out uint stickerSchema) || !uint.TryParse(parts[1], out uint stickerSchema) ||
!float.TryParse(parts[2], out float stickerOffsetX) || !float.TryParse(parts[2], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerOffsetX) ||
!float.TryParse(parts[3], out float stickerOffsetY) || !float.TryParse(parts[3], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerOffsetY) ||
!float.TryParse(parts[4], out float stickerWear) || !float.TryParse(parts[4], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerWear) ||
!float.TryParse(parts[5], out float stickerScale) || !float.TryParse(parts[5], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerScale) ||
!float.TryParse(parts[6], out float stickerRotation)) continue; !float.TryParse(parts[6], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerRotation)) continue;
StickerInfo stickerInfo = new StickerInfo StickerInfo stickerInfo = new StickerInfo
{ {

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Музикален комплект | Tree Adams — Seventh Moon", "name": "Музикален комплект | Tree Adams — Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Музикален комплект | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Hudební balíček | Tree Adams Seventh Moon", "name": "Hudební balíček | Tree Adams Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Hudební balíček | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musiksæt | Tree Adams, Seventh Moon", "name": "Musiksæt | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musiksæt | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musikkit | Tree Adams, Seventh Moon", "name": "Musikkit | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musikkit | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Μουσικό κουτί | Tree Adams, Seventh Moon", "name": "Μουσικό κουτί | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Μουσικό κουτί | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Music Kit | Tree Adams, Seventh Moon", "name": "Music Kit | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Music Kit | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de música | Tree Adams, Seventh Moon", "name": "Kit de música | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de música | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de música | Tree Adams, Seventh Moon", "name": "Kit de música | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de música | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musiikkipakkaus | Tree Adams: Seventh Moon", "name": "Musiikkipakkaus | Tree Adams: Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musiikkipakkaus | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de musiques | Tree Adams, Seventh Moon", "name": "Kit de musiques | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de musiques | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Zenekészlet | Tree Adams - Seventh Moon", "name": "Zenekészlet | Tree Adams - Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Zenekészlet | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Tema musicale | Tree Adams, Seventh Moon", "name": "Tema musicale | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Tema musicale | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "ミュージックキット | Tree Adams, Seventh Moon", "name": "ミュージックキット | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "ミュージックキット | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Музикален комплект | Tree Adams — Seventh Moon", "name": "Музикален комплект | Tree Adams — Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Музикален комплект | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Hudební balíček | Tree Adams Seventh Moon", "name": "Hudební balíček | Tree Adams Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Hudební balíček | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musiksæt | Tree Adams, Seventh Moon", "name": "Musiksæt | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musiksæt | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musikkit | Tree Adams, Seventh Moon", "name": "Musikkit | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musikkit | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Μουσικό κουτί | Tree Adams, Seventh Moon", "name": "Μουσικό κουτί | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Μουσικό κουτί | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Music Kit | Tree Adams, Seventh Moon", "name": "Music Kit | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Music Kit | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de música | Tree Adams, Seventh Moon", "name": "Kit de música | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de música | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de música | Tree Adams, Seventh Moon", "name": "Kit de música | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de música | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musiikkipakkaus | Tree Adams: Seventh Moon", "name": "Musiikkipakkaus | Tree Adams: Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musiikkipakkaus | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de musiques | Tree Adams, Seventh Moon", "name": "Kit de musiques | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de musiques | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Zenekészlet | Tree Adams - Seventh Moon", "name": "Zenekészlet | Tree Adams - Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Zenekészlet | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Tema musicale | Tree Adams, Seventh Moon", "name": "Tema musicale | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Tema musicale | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "ミュージックキット | Tree Adams, Seventh Moon", "name": "ミュージックキット | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "ミュージックキット | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "음악 키트 | Tree Adams, Seventh Moon", "name": "음악 키트 | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "음악 키트 | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -336,32 +336,32 @@
}, },
{ {
"id": "71", "id": "71",
"name": "Music Kit | DRYDEN, Feel The Power", "name": "Muziekset | DRYDEN, Feel The Power",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png"
}, },
{ {
"id": "72", "id": "72",
"name": "Music Kit | ISOxo, inhuman", "name": "Muziekset | ISOxo, inhuman",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png"
}, },
{ {
"id": "73", "id": "73",
"name": "Music Kit | KILL SCRIPT, All Night", "name": "Muziekset | KILL SCRIPT, All Night",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png"
}, },
{ {
"id": "74", "id": "74",
"name": "Music Kit | Knock2, Make U SWEAT!", "name": "Muziekset | Knock2, Make U SWEAT!",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png"
}, },
{ {
"id": "75", "id": "75",
"name": "Music Kit | Rad Cat, Reason", "name": "Muziekset | Rad Cat, Reason",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png"
}, },
{ {
"id": "76", "id": "76",
"name": "Music Kit | TWERL, Ekko & Sidetrack, Under Bright Lights", "name": "Muziekset | TWERL, Ekko & Sidetrack, Under Bright Lights",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png"
}, },
{ {
@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Muziekset | Tree Adams, Seventh Moon", "name": "Muziekset | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Muziekset | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musikksett | Tree Adams Seventh Moon", "name": "Musikksett | Tree Adams Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musikksett | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -386,7 +386,7 @@
}, },
{ {
"id": "82", "id": "82",
"name": "Music Kit | Matt Levine, Agency", "name": "Zestaw utworów | Matt Levine, Agency",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png"
}, },
{ {
@@ -396,12 +396,17 @@
}, },
{ {
"id": "84", "id": "84",
"name": "Music Kit | Tim Huling, Devil's Paintbrush", "name": "Zestaw utworów | Tim Huling, Devil's Paintbrush",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png"
}, },
{ {
"id": "85", "id": "85",
"name": "Zestaw utworów | Tree Adams, Seventh Moon", "name": "Zestaw utworów | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Zestaw utworów | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Trilha Sonora | Tree Adams, Seventh Moon", "name": "Trilha Sonora | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Trilha Sonora | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -381,7 +381,7 @@
}, },
{ {
"id": "81", "id": "81",
"name": "Music Kit | Dren McDonald, Coffee! Kofe! Kahveh!", "name": "Kit de Música | Dren McDonald, Coffee! Kofe! Kahveh!",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png"
}, },
{ {
@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de Música | Tree Adams, Seventh Moon", "name": "Kit de Música | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de Música | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Pachet muzical | Tree Adams, Seventh Moon", "name": "Pachet muzical | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Pachet muzical | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Набор музыки | Tree Adams — Seventh Moon", "name": "Набор музыки | Tree Adams — Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Набор музыки | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musikpaket | Tree Adams Seventh Moon", "name": "Musikpaket | Tree Adams Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musikpaket | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon", "name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "ชุดอุปกรณ์เพลง | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Müzik Kiti | Tree Adams, Seventh Moon", "name": "Müzik Kiti | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Müzik Kiti | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Музичний альбом | Tree Adams — Seventh Moon", "name": "Музичний альбом | Tree Adams — Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Музичний альбом | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Gói âm thanh | Tree Adams, Seventh Moon", "name": "Gói âm thanh | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Gói âm thanh | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "音乐盒 | Tree Adams柒月", "name": "音乐盒 | Tree Adams柒月",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "音乐盒 | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "音樂包 | Tree Adams - Seventh Moon", "name": "音樂包 | Tree Adams - Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "音樂包 | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "음악 키트 | Tree Adams, Seventh Moon", "name": "음악 키트 | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "음악 키트 | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -336,32 +336,32 @@
}, },
{ {
"id": "71", "id": "71",
"name": "Music Kit | DRYDEN, Feel The Power", "name": "Muziekset | DRYDEN, Feel The Power",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png"
}, },
{ {
"id": "72", "id": "72",
"name": "Music Kit | ISOxo, inhuman", "name": "Muziekset | ISOxo, inhuman",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png"
}, },
{ {
"id": "73", "id": "73",
"name": "Music Kit | KILL SCRIPT, All Night", "name": "Muziekset | KILL SCRIPT, All Night",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png"
}, },
{ {
"id": "74", "id": "74",
"name": "Music Kit | Knock2, Make U SWEAT!", "name": "Muziekset | Knock2, Make U SWEAT!",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png"
}, },
{ {
"id": "75", "id": "75",
"name": "Music Kit | Rad Cat, Reason", "name": "Muziekset | Rad Cat, Reason",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png"
}, },
{ {
"id": "76", "id": "76",
"name": "Music Kit | TWERL, Ekko & Sidetrack, Under Bright Lights", "name": "Muziekset | TWERL, Ekko & Sidetrack, Under Bright Lights",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png"
}, },
{ {
@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Muziekset | Tree Adams, Seventh Moon", "name": "Muziekset | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Muziekset | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musikksett | Tree Adams Seventh Moon", "name": "Musikksett | Tree Adams Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musikksett | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -386,7 +386,7 @@
}, },
{ {
"id": "82", "id": "82",
"name": "Music Kit | Matt Levine, Agency", "name": "Zestaw utworów | Matt Levine, Agency",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png"
}, },
{ {
@@ -396,12 +396,17 @@
}, },
{ {
"id": "84", "id": "84",
"name": "Music Kit | Tim Huling, Devil's Paintbrush", "name": "Zestaw utworów | Tim Huling, Devil's Paintbrush",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png"
}, },
{ {
"id": "85", "id": "85",
"name": "Zestaw utworów | Tree Adams, Seventh Moon", "name": "Zestaw utworów | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Zestaw utworów | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Trilha Sonora | Tree Adams, Seventh Moon", "name": "Trilha Sonora | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Trilha Sonora | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -381,7 +381,7 @@
}, },
{ {
"id": "81", "id": "81",
"name": "Music Kit | Dren McDonald, Coffee! Kofe! Kahveh!", "name": "Kit de Música | Dren McDonald, Coffee! Kofe! Kahveh!",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png"
}, },
{ {
@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Kit de Música | Tree Adams, Seventh Moon", "name": "Kit de Música | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Kit de Música | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Pachet muzical | Tree Adams, Seventh Moon", "name": "Pachet muzical | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Pachet muzical | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Набор музыки | Tree Adams — Seventh Moon", "name": "Набор музыки | Tree Adams — Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Набор музыки | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Musikpaket | Tree Adams Seventh Moon", "name": "Musikpaket | Tree Adams Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Musikpaket | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon", "name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "ชุดอุปกรณ์เพลง | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Müzik Kiti | Tree Adams, Seventh Moon", "name": "Müzik Kiti | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Müzik Kiti | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Музичний альбом | Tree Adams — Seventh Moon", "name": "Музичний альбом | Tree Adams — Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Музичний альбом | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "Gói âm thanh | Tree Adams, Seventh Moon", "name": "Gói âm thanh | Tree Adams, Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "Gói âm thanh | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "音乐盒 | Tree Adams柒月", "name": "音乐盒 | Tree Adams柒月",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "音乐盒 | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

View File

@@ -403,5 +403,10 @@
"id": "85", "id": "85",
"name": "音樂包 | Tree Adams - Seventh Moon", "name": "音樂包 | Tree Adams - Seventh Moon",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png" "image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
},
{
"id": "86",
"name": "音樂包 | Perfect World, Ay Hey",
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
} }
] ]

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB