commit b82a99e55f214e2d04619cb5856e2126cd6879c1 Author: Nereziel Date: Sun Nov 5 17:34:47 2023 +0100 initial upload diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..4a1b51e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ + +.vs/ +bin/ +obj/ diff --git a/Config.cs b/Config.cs new file mode 100644 index 00000000..d8f1a8e6 --- /dev/null +++ b/Config.cs @@ -0,0 +1,59 @@ +using CounterStrikeSharp.API.Modules.Utils; +using System.Reflection; +using System.Text.Json; + +namespace WeaponPaints +{ + internal class Cfg + { + public static Config config = new(); + public void CheckConfig(string moduleDirectory) + { + string path = Path.Join(moduleDirectory, "config.json"); + + if (!File.Exists(path)) + { + CreateAndWriteFile(path); + } + + using FileStream fs = new(path, FileMode.Open, FileAccess.Read); + using StreamReader sr = new(fs); + // Deserialize the JSON from the file and load the configuration. + config = JsonSerializer.Deserialize(sr.ReadToEnd()); + } + private static void CreateAndWriteFile(string path) + { + + using (FileStream fs = File.Create(path)) + { + // File is created, and fs will automatically be disposed when the using block exits. + } + + Console.WriteLine($"File created: {File.Exists(path)}"); + + config = new Config + { + DatabaseHost = "localhost", + DatabasePort = 3306, + DatabaseUser = "dbuser", + DatabasePassword = "dbpassword", + DatabaseName = "database" + }; + + // Serialize the config object to JSON and write it to the file. + string jsonConfig = JsonSerializer.Serialize(config, new JsonSerializerOptions() + { + WriteIndented = true + }); + File.WriteAllText(path, jsonConfig); + } + } + internal class Config + { + public string? DatabaseHost { get; set; } + public uint DatabasePort { get; set; } + public string? DatabaseUser { get; set; } + public string? DatabasePassword { get; set; } + public string? DatabaseName { get; set; } + } +} diff --git a/Database.cs b/Database.cs new file mode 100644 index 00000000..95302db2 --- /dev/null +++ b/Database.cs @@ -0,0 +1,52 @@ +using CounterStrikeSharp.API; +using MySqlConnector; +using WeaponPaints; + +namespace WeaponPaints +{ + internal class Database + { + private static readonly MySqlConnectionStringBuilder connection = new() + { + Server = Cfg.config.DatabaseHost, + Port = Cfg.config.DatabasePort, + UserID = Cfg.config.DatabaseUser, + Password = Cfg.config.DatabasePassword, + Database = Cfg.config.DatabaseName + }; + + public static MySqlConnection GetConnection() + { + return new MySqlConnection(connection.ConnectionString); + } + } + internal class Queries + { + public static int GetPlayersWeaponPaint(string steamId, int weaponDefIndex) + { + try + { + using MySqlConnection connection = Database.GetConnection(); + using MySqlCommand command = connection.CreateCommand(); + command.CommandText = "SELECT weapon_paint_id FROM wp_player_skins WHERE steamid = @steamId AND weapon_defindex = @weaponDefIndex;"; + command.Parameters.AddWithValue("@steamId", steamId); + command.Parameters.AddWithValue("@weaponDefIndex", weaponDefIndex); + + connection.Open(); + using var reader = command.ExecuteReader(); + + int weaponPaint = 0; + while (reader.Read()) + { + weaponPaint = reader.GetInt32("weapon_paint_id"); + } + connection.Close(); + return weaponPaint; + } + catch (Exception) + { + return 0; + } + } + } +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..f288702d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 00000000..6901802b --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# cs2-WeaponPaints \ No newline at end of file diff --git a/WeaponPaints.cs b/WeaponPaints.cs new file mode 100644 index 00000000..fa321edd --- /dev/null +++ b/WeaponPaints.cs @@ -0,0 +1,53 @@ +using CounterStrikeSharp.API.Core; + +namespace WeaponPaints; +public class WeaponPaints : BasePlugin +{ + public override string ModuleName => "WeaponPaints"; + + public override string ModuleVersion => "0.0.1"; + + public override void Load(bool hotReload) + { + new Cfg().CheckConfig(ModuleDirectory); + RegisterListener(OnEntitySpawned); + + } + private void OnEntitySpawned(CEntityInstance entity) + { + var designerName = entity.DesignerName; + + if (!designerName.Contains("weapon_")) return; + if (designerName.Contains("knife")) return; + + var weapon = new CBasePlayerWeapon(entity.Handle); + if (!weapon.IsValid) return; + if (weapon.AttributeManager.Item.AccountID < 0) return; + + //Log($"AccountID {weapon.AttributeManager.Item.AccountID}"); + //Log($"playerSteam {playerId}"); + var playerId = ConvertToSteam64(weapon.AttributeManager.Item.AccountID); + int weaponPaint = Queries.GetPlayersWeaponPaint(playerId.ToString(), weapon.AttributeManager.Item.ItemDefinitionIndex); + if (playerId == 0) return; + if (weaponPaint == 0) return; + weapon.AttributeManager.Item.AccountID = unchecked((uint)271098320); + weapon.AttributeManager.Item.ItemIDLow = unchecked((uint)-1); + weapon.AttributeManager.Item.ItemIDHigh = unchecked((uint)-1); + weapon.FallbackPaintKit = weaponPaint; + weapon.FallbackSeed = 0; + weapon.FallbackWear = 0.0001f; + } + private Int64 ConvertToSteam64(uint id) + { + uint account_type = id % 2; + uint account_id = (id - account_type) / 2; + return 76561197960265728L + (account_id * 2) + account_type; + } + private static void Log(string message) + { + Console.BackgroundColor = ConsoleColor.DarkGray; + Console.ForegroundColor = ConsoleColor.DarkMagenta; + Console.WriteLine(message); + Console.ResetColor(); + } +} \ No newline at end of file diff --git a/WeaponPaints.csproj b/WeaponPaints.csproj new file mode 100644 index 00000000..27c6a4db --- /dev/null +++ b/WeaponPaints.csproj @@ -0,0 +1,18 @@ + + + + net7.0 + enable + enable + + + + + deps\CounterStrikeSharp.API.dll + + + deps\MySqlConnector.dll + + + + diff --git a/WeaponPaints.sln b/WeaponPaints.sln new file mode 100644 index 00000000..307cd28d --- /dev/null +++ b/WeaponPaints.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33530.505 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeaponPaints", "WeaponPaints.csproj", "{1BE14823-BED5-42D8-B26D-1EFABBCB22F1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1BE14823-BED5-42D8-B26D-1EFABBCB22F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1BE14823-BED5-42D8-B26D-1EFABBCB22F1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1BE14823-BED5-42D8-B26D-1EFABBCB22F1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1BE14823-BED5-42D8-B26D-1EFABBCB22F1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {47C8927B-680C-4D83-B383-716FF70651D7} + EndGlobalSection +EndGlobal diff --git a/deps/CounterStrikeSharp.API.dll b/deps/CounterStrikeSharp.API.dll new file mode 100644 index 00000000..55e1110e Binary files /dev/null and b/deps/CounterStrikeSharp.API.dll differ diff --git a/deps/MySqlConnector.dll b/deps/MySqlConnector.dll new file mode 100644 index 00000000..ee6062d1 Binary files /dev/null and b/deps/MySqlConnector.dll differ diff --git a/website/class/DataBase.php b/website/class/DataBase.php new file mode 100644 index 00000000..610ba389 --- /dev/null +++ b/website/class/DataBase.php @@ -0,0 +1,26 @@ +PDO = new PDO("mysql:host=".$this->DB_HOST."; dbname=".$this->DB_NAME, $this->DB_USER, $this->DB_PASS, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8")); + } + public function select($query, $bindings = []) { + $STH = $this->PDO->prepare($query); + $STH->execute($bindings); + $result = $STH->fetchAll(PDO::FETCH_ASSOC); + $result ??= false; + return $result; + } + + public function query($query, $bindings = []){ + $STH = $this->PDO->prepare($query); + return $STH->execute($bindings); + } + +} diff --git a/website/database.sql b/website/database.sql new file mode 100644 index 00000000..2be0581f --- /dev/null +++ b/website/database.sql @@ -0,0 +1,1786 @@ +-- phpMyAdmin SQL Dump +-- version 5.2.1 +-- https://www.phpmyadmin.net/ +-- +-- Host: localhost +-- Generation Time: Nov 02, 2023 at 11:12 AM +-- Server version: 10.11.2-MariaDB +-- PHP Version: 8.2.3 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `cs2server` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `wp_player_skins` +-- + +CREATE TABLE `wp_player_skins` ( + --`id` int(11) NOT NULL, + `steamid` varchar(64) NOT NULL, + `weapon_defindex` int(6) NOT NULL, + `weapon_paint_id` int(6) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; + +-- +-- Dumping data for table `wp_player_skins` +-- + +-- +-- Table structure for table `wp_weapons` +-- + +CREATE TABLE `wp_weapons_paints` ( + --`id` int(11) NOT NULL, + `weapon_defindex` int(6) NOT NULL, + `weapon_name` varchar(60) NOT NULL, + `paint` int(6) NOT NULL, + `image` varchar(255) NOT NULL, + `paint_name` varchar(128) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `wp_player_skins` +-- +--ALTER TABLE `wp_player_skins` + --ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `wp_weapons_paints` +-- +--ALTER TABLE `wp_weapons_paints` + --ADD PRIMARY KEY (`id`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `wp_player_skins` +-- +--ALTER TABLE `wp_player_skins` + --MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `wp_weapons_paints` +-- +--ALTER TABLE `wp_weapons_paints` + --MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; + +INSERT INTO `wp_weapons_paints` (`weapon_name`, `weapon_defindex`, `paint`, `image`, `paint_name`) VALUES +('weapon_bizon',26,0,'https://overcore.eu/wska/img/weapon/weapon_bizon.png','PP-Bizon | Default'), +('weapon_mac10',17,0,'https://overcore.eu/wska/img/weapon/weapon_mac10.png','Mac-10 | Default'), +('weapon_mp9',34,0,'https://overcore.eu/wska/img/weapon/weapon_mp9.png','MP9 | Default'), +('weapon_p90',19,0,'https://overcore.eu/wska/img/weapon/weapon_p90.png','P90 | Default'), +('weapon_ump45',24,0,'https://overcore.eu/wska/img/weapon/weapon_ump45.png','UMP | Default'), +('weapon_ak47',7,0,'https://overcore.eu/wska/img/weapon/weapon_ak47.png','AK-47 | Default'), +('weapon_aug',8,0,'https://overcore.eu/wska/img/weapon/weapon_aug.png','AUG | Default'), +('weapon_famas',10,0,'https://overcore.eu/wska/img/weapon/weapon_famas.png','Famas | Default'), +('weapon_galilar',13,0,'https://overcore.eu/wska/img/weapon/weapon_galilar.png','Galil | Default'), +('weapon_m4a1',16,0,'https://overcore.eu/wska/img/weapon/weapon_m4a1.png','M4A4 | Default'), +('weapon_m4a1_silencer',60,0,'https://overcore.eu/wska/img/weapon/weapon_m4a1_silencer.png','M4A1-S | Default'), +('weapon_sg556',39,0,'https://overcore.eu/wska/img/weapon/weapon_sg556.png','SG 556 | Default'), +('weapon_awp',9,0,'https://overcore.eu/wska/img/weapon/weapon_awp.png','AWP | Default'), +('weapon_g3sg1',11,0,'https://overcore.eu/wska/img/weapon/weapon_g3sg1.png','G3SG1 | Default'), +('weapon_scar20',38,0,'https://overcore.eu/wska/img/weapon/weapon_scar20.png','Scar 20 | Default'), +('weapon_ssg08',40,0,'https://overcore.eu/wska/img/weapon/weapon_ssg08.png','SSG 08 | Default'), +('weapon_mag7',27,0,'https://overcore.eu/wska/img/weapon/weapon_mag7.png','Mag-7 | Default'), +('weapon_nova',35,0,'https://overcore.eu/wska/img/weapon/weapon_nova.png','Nova | Default'), +('weapon_sawedoff',29,0,'https://overcore.eu/wska/img/weapon/weapon_sawedoff.png','Sawed off | Default'), +('weapon_xm1014',25,0,'https://overcore.eu/wska/img/weapon/weapon_xm1014.png','XM 1014 | Default'), +('weapon_m249',14,0,'https://overcore.eu/wska/img/weapon/weapon_m249.png','M249 | Default'), +('weapon_negev',28,0,'https://overcore.eu/wska/img/weapon/weapon_negev.png','Negev | Default'), +('weapon_deagle',1,0,'https://overcore.eu/wska/img/weapon/weapon_deagle.png','Desert Eagle | Default'), +('weapon_elite',2,0,'https://overcore.eu/wska/img/weapon/weapon_elite.png','Dual Elites | Default'), +('weapon_fiveseven',3,0,'https://overcore.eu/wska/img/weapon/weapon_fiveseven.png','Five Seven | Default'), +('weapon_glock',4,0,'https://overcore.eu/wska/img/weapon/weapon_glock.png','Glock | Default'), +('weapon_hkp2000',32,0,'https://overcore.eu/wska/img/weapon/weapon_hkp2000.png','P2000 | Default'), +('weapon_tec9',30,0,'https://overcore.eu/wska/img/weapon/weapon_tec9.png','Tec-9 | Default'), +('weapon_usp_silencer',61,0,'https://overcore.eu/wska/img/weapon/weapon_usp_silencer.png','USP-S | Default'), +('weapon_cz75a',63,0,'https://overcore.eu/wska/img/weapon/weapon_cz75a.png','CZ-75 | Default'), +('weapon_p250',36,0,'https://overcore.eu/wska/img/weapon/weapon_p250.png','P250 | Default'), +('weapon_mp5sd',23,0,'https://overcore.eu/wska/img/weapon/weapon_mp5sd.png','MP5-SD | Default'), +('weapon_mp7',33,0,'https://overcore.eu/wska/img/weapon/weapon_mp7.png','MP7 | Default'), +('weapon_revolver',64,0,'https://overcore.eu/wska/img/weapon/weapon_revolver.png','Revolver | Default'), +('weapon_bayonet',500,0,'https://overcore.eu/wska/img/weapon/weapon_bayonet.png','★ Bayonet| Default'), +('weapon_knife_css',503,0,'https://overcore.eu/wska/img/weapon/weapon_knife_css.png','★ Classic Knife | Default'), +('weapon_knife_flip',505,0,'https://overcore.eu/wska/img/weapon/weapon_knife_flip.png','★ Flip Knife | Default'), +('weapon_knife_gut',506,0,'https://overcore.eu/wska/img/weapon/weapon_knife_gut.png','★ Gut Knife | Default'), +('weapon_knife_karambit',507,0,'https://overcore.eu/wska/img/weapon/weapon_knife_karambit.png','★ Karambit | Default'), +('weapon_knife_m9_bayonet',508,0,'https://overcore.eu/wska/img/weapon/weapon_knife_m9_bayonet.png','★ M9 Bayonet | Default'), +('weapon_knife_tactical',509,0,'https://overcore.eu/wska/img/weapon/weapon_knife_tactical.png','★ Huntsman Knife | Default'), +('weapon_knife_falchion',512,0,'https://overcore.eu/wska/img/weapon/weapon_knife_falchion.png','★ Falchion Knife | Default'), +('weapon_knife_survival_bowie',214,0,'https://overcore.eu/wska/img/weapon/weapon_knife_survival_bowie.png','★ Bowie Knife | Default'), +('weapon_knife_butterfly',515,0,'https://overcore.eu/wska/img/weapon/weapon_knife_butterfly.png','★ Butterfly Knife | Default'), +('weapon_knife_push',516,0,'https://overcore.eu/wska/img/weapon/weapon_knife_push.png','★ Shadow Daggers | Default'), +('weapon_knife_cord',517,0,'https://overcore.eu/wska/img/weapon/weapon_knife_cord.png','★ Paracord Knife | Default'), +('weapon_knife_canis',518,0,'https://overcore.eu/wska/img/weapon/weapon_knife_canis.png','★ Survival Knife | Default'), +('weapon_knife_ursus',519,0,'https://overcore.eu/wska/img/weapon/weapon_knife_ursus.png','★ Ursus Knife | Default'), +('weapon_knife_gypsy_jackknife',520,0,'https://overcore.eu/wska/img/weapon/weapon_knife_gypsy_jackknife.png','★ Navaja Knife | Default'), +('weapon_knife_outdoor',521,0,'https://overcore.eu/wska/img/weapon/weapon_knife_outdoor.png','★ Nomad Knife | Default'), +('weapon_knife_stiletto',522,0,'https://overcore.eu/wska/img/weapon/weapon_knife_stiletto.png','★ Stiletto Knife | Default'), +('weapon_knife_widowmaker',523,0,'https://overcore.eu/wska/img/weapon/weapon_knife_widowmaker.png','★ Talon Knife | Default'), +('weapon_knife_skeleton',525,0,'https://overcore.eu/wska/img/weapon/weapon_knife_skeleton.png','★ Skeleton Knife | Default'); + +INSERT INTO `wp_weapons_paints` (`weapon_name`, `weapon_defindex`, `paint`, `image`, `paint_name`) VALUES +('weapon_deagle', 1, 17, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_ddpat_urb_light.png', 'Desert Eagle | Urban DDPAT'), +('weapon_deagle', 1, 37, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aa_flames_light.png', 'Desert Eagle | Blaze'), +('weapon_deagle', 1, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_so_night_light.png', 'Desert Eagle | Night'), +('weapon_deagle', 1, 61, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aa_vertigo_light.png', 'Desert Eagle | Hypnotic'), +('weapon_deagle', 1, 90, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_mottled_sand_light.png', 'Desert Eagle | Mudder'), +('weapon_deagle', 1, 185, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_scales_bravo_light.png', 'Desert Eagle | Golden Koi'), +('weapon_deagle', 1, 231, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_ddpatdense_peacock_light.png', 'Desert Eagle | Cobalt Disruption'), +('weapon_deagle', 1, 232, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_webs_darker_light.png', 'Desert Eagle | Crimson Web'), +('weapon_deagle', 1, 237, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_varicamo_urban_light.png', 'Desert Eagle | Urban Rubble'), +('weapon_deagle', 1, 273, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_engraved_deagle_light.png', 'Desert Eagle | Heirloom'), +('weapon_deagle', 1, 296, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_crystallized_dark_light.png', 'Desert Eagle | Meteorite'), +('weapon_deagle', 1, 328, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_handcannon_light.png', 'Desert Eagle | Hand Cannon'), +('weapon_deagle', 1, 347, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_pilot_deagle_light.png', 'Desert Eagle | Pilot'), +('weapon_deagle', 1, 351, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deagle_aureus_light.png', 'Desert Eagle | Conspiracy'), +('weapon_deagle', 1, 397, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_deagle_naga_light.png', 'Desert Eagle | Naga'), +('weapon_deagle', 1, 425, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_bronze_sparkle_light.png', 'Desert Eagle | Bronze Deco'), +('weapon_deagle', 1, 468, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_seastorm_light.png', 'Desert Eagle | Midnight Storm'), +('weapon_deagle', 1, 469, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_seastorm_blood_light.png', 'Desert Eagle | Sunset Storm 壱'), +('weapon_deagle', 1, 470, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_seastorm_shojo_light.png', 'Desert Eagle | Sunset Storm 弐'), +('weapon_deagle', 1, 509, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_deagle_corinthian_light.png', 'Desert Eagle | Corinthian'), +('weapon_deagle', 1, 527, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_light.png', 'Desert Eagle | Kumicho Dragon'), +('weapon_deagle', 1, 603, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_desert_eagle_constable_light.png', 'Desert Eagle | Directive'), +('weapon_deagle', 1, 645, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_desert_eagle_corroden_light.png', 'Desert Eagle | Oxide Blaze'), +('weapon_deagle', 1, 711, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_aggressor_light.png', 'Desert Eagle | Code Red'), +('weapon_deagle', 1, 757, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_jorm_green_light.png', 'Desert Eagle | Emerald Jörmungandr'), +('weapon_deagle', 1, 764, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_fennec_light.png', 'Desert Eagle | Fennec Fox'), +('weapon_deagle', 1, 805, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_mecha_light.png', 'Desert Eagle | Mecha Industries'), +('weapon_deagle', 1, 841, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_exo_light.png', 'Desert Eagle | Light Rail'), +('weapon_deagle', 1, 945, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deagle_replica_light.png', 'Desert Eagle | Blue Ply'), +('weapon_deagle', 1, 962, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deag_printstream_light.png', 'Desert Eagle | Printstream'), +('weapon_deagle', 1, 992, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_numbers_bronze_light.png', 'Desert Eagle | The Bronze'), +('weapon_deagle', 1, 1006, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_heist_plans_purple_light.png', 'Desert Eagle | Night Heist'), +('weapon_deagle', 1, 1050, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deag_trigger_discipline_light.png', 'Desert Eagle | Trigger Discipline'), +('weapon_deagle', 1, 1056, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_sp_spacerace_blue_light.png', 'Desert Eagle | Sputnik'), +('weapon_deagle', 1, 1090, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deagle_kitch_light.png', 'Desert Eagle | Ocean Drive'), +('weapon_elite', 2, 28, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_an_navy_light.png', 'Dual Berettas | Anodized Navy'), +('weapon_elite', 2, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_aq_forced_light.png', 'Dual Berettas | Stained'), +('weapon_elite', 2, 46, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_pmc_light.png', 'Dual Berettas | Contractor'), +('weapon_elite', 2, 47, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_space_marine_light.png', 'Dual Berettas | Colony'), +('weapon_elite', 2, 153, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_tangerine_light.png', 'Dual Berettas | Demolition'), +('weapon_elite', 2, 190, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_season_elites_bravo_light.png', 'Dual Berettas | Black Limba'), +('weapon_elite', 2, 220, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_am_ossify_red_light.png', 'Dual Berettas | Hemoglobin'), +('weapon_elite', 2, 249, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_am_crystallized_blue_light.png', 'Dual Berettas | Cobalt Quartz'), +('weapon_elite', 2, 261, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_marina_sunrise_light.png', 'Dual Berettas | Marina'), +('weapon_elite', 2, 276, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_panther_light.png', 'Dual Berettas | Panther'), +('weapon_elite', 2, 307, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_retribution_light.png', 'Dual Berettas | Retribution'), +('weapon_elite', 2, 330, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_vines_light.png', 'Dual Berettas | Briar'), +('weapon_elite', 2, 396, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_elites_urbanstorm_light.png', 'Dual Berettas | Urban Shock'), +('weapon_elite', 2, 447, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_mother_of_pearl_elite_light.png', 'Dual Berettas | Duelist'), +('weapon_elite', 2, 450, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_zodiac1_light.png', 'Dual Berettas | Moon in Libra'), +('weapon_elite', 2, 453, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_an_emerald_light.png', 'Dual Berettas | Emerald'), +('weapon_elite', 2, 491, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_dualberretta_dragons_light.png', 'Dual Berettas | Dualing Dragons'), +('weapon_elite', 2, 528, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_aq_dualberettas_cartel_light.png', 'Dual Berettas | Cartel'), +('weapon_elite', 2, 544, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dualberettas_ventilators_light.png', 'Dual Berettas | Ventilators'), +('weapon_elite', 2, 625, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_berettas_golden_venice_light.png', 'Dual Berettas | Royal Consorts'), +('weapon_elite', 2, 658, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dualberettas_cobra_light.png', 'Dual Berettas | Cobra Strike'), +('weapon_elite', 2, 710, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_sp_elites_winter_raider_light.png', 'Dual Berettas | Shred'), +('weapon_elite', 2, 747, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_dual_elites_rally_light.png', 'Dual Berettas | Twin Turbo'), +('weapon_elite', 2, 824, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_sp_dry_wood_light.png', 'Dual Berettas | Drift Wood'), +('weapon_elite', 2, 860, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_gelpen_dark_light.png', 'Dual Berettas | Pyre'), +('weapon_elite', 2, 895, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_elites_rose_light.png', 'Dual Berettas | Balance'), +('weapon_elite', 2, 903, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_elites_classic_light.png', 'Dual Berettas | Elite 1.6'), +('weapon_elite', 2, 978, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_elites_dezastre_light.png', 'Dual Berettas | Dezastre'), +('weapon_elite', 2, 998, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_numbers_green_light.png', 'Dual Berettas | Switch Board'), +('weapon_elite', 2, 1005, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_am_heist_plans_green_light.png', 'Dual Berettas | Heist'), +('weapon_elite', 2, 1086, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_sp_engine_dirty_light.png', 'Dual Berettas | Oil Change'), +('weapon_elite', 2, 1091, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_berettas_tread_light.png', 'Dual Berettas | Tread'), +('weapon_elite', 2, 1126, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_elites_beware_light.png', 'Dual Berettas | Melondrama'), +('weapon_elite', 2, 1156, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_dual_elites_evil_flora_light.png', 'Dual Berettas | Flora Carnivora'), +('weapon_fiveseven', 3, 3, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_red_light.png', 'Five-SeveN | Candy Apple'), +('weapon_fiveseven', 3, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aq_oiled_light.png', 'Five-SeveN | Case Hardened'), +('weapon_fiveseven', 3, 46, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_pmc_light.png', 'Five-SeveN | Contractor'), +('weapon_fiveseven', 3, 78, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_forest_night_light.png', 'Five-SeveN | Forest Night'), +('weapon_fiveseven', 3, 141, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_sp_tape_orange_light.png', 'Five-SeveN | Orange Peel'), +('weapon_fiveseven', 3, 151, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_jungle_light.png', 'Five-SeveN | Jungle'), +('weapon_fiveseven', 3, 210, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_an_gunmetal_bravo_light.png', 'Five-SeveN | Anodized Gunmetal'), +('weapon_fiveseven', 3, 223, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_flowers_light.png', 'Five-SeveN | Nightshade'), +('weapon_fiveseven', 3, 252, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_am_crystallized_silver_light.png', 'Five-SeveN | Silver Quartz'), +('weapon_fiveseven', 3, 254, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_orange_accents_light.png', 'Five-SeveN | Nitro'), +('weapon_fiveseven', 3, 265, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_kami_light.png', 'Five-SeveN | Kami'), +('weapon_fiveseven', 3, 274, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_am_copper_flecks_light.png', 'Five-SeveN | Copper Galaxy'), +('weapon_fiveseven', 3, 352, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aq_57_feathers_light.png', 'Five-SeveN | Fowl Play'), +('weapon_fiveseven', 3, 377, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_grey_nuclear_orange_five_seven_light.png', 'Five-SeveN | Hot Shot'), +('weapon_fiveseven', 3, 387, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_urban_hazard_light.png', 'Five-SeveN | Urban Hazard'), +('weapon_fiveseven', 3, 427, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_banana_light.png', 'Five-SeveN | Monkey Business'), +('weapon_fiveseven', 3, 464, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_kimono_diamonds_light.png', 'Five-SeveN | Neon Kimono'), +('weapon_fiveseven', 3, 510, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_retrobution_light.png', 'Five-SeveN | Retrobution'), +('weapon_fiveseven', 3, 530, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_light.png', 'Five-SeveN | Triumvirate'), +('weapon_fiveseven', 3, 585, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_five_seven_daimyo_light.png', 'Five-SeveN | Violent Daimyo'), +('weapon_fiveseven', 3, 605, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aq_five_seven_scumbria_light.png', 'Five-SeveN | Scumbria'), +('weapon_fiveseven', 3, 646, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_vein_light.png', 'Five-SeveN | Capillary'), +('weapon_fiveseven', 3, 660, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_hyperbeast_light.png', 'Five-SeveN | Hyper Beast'), +('weapon_fiveseven', 3, 693, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_gs_fiveseven_hot_rod_violet_light.png', 'Five-SeveN | Flame Test'), +('weapon_fiveseven', 3, 729, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_bud_red_light.png', 'Five-SeveN | Crimson Blossom'), +('weapon_fiveseven', 3, 784, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_ducts_green_light.png', 'Five-SeveN | Coolant'), +('weapon_fiveseven', 3, 837, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_five_seven_angry_light.png', 'Five-SeveN | Angry Mob'), +('weapon_fiveseven', 3, 906, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_gsg9_light.png', 'Five-SeveN | Buddy'), +('weapon_fiveseven', 3, 932, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_sp_moro_textile_purple_yellow_light.png', 'Five-SeveN | Withered Vine'), +('weapon_fiveseven', 3, 979, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_five_seven_diary_light.png', 'Five-SeveN | Fairy Tale'), +('weapon_fiveseven', 3, 1002, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aa_fade_red_blue_light.png', 'Five-SeveN | Berries And Cherries'), +('weapon_fiveseven', 3, 1082, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_vertigo_fiveseven_light.png', 'Five-SeveN | Fall Hazard'), +('weapon_fiveseven', 3, 1093, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_gs_five_seven_efusion_light.png', 'Five-SeveN | Boost Protocol'), +('weapon_fiveseven', 3, 1128, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_alpha_omega_light.png', 'Five-SeveN | Scrawl'), +('weapon_glock', 4, 2, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_olive_light.png', 'Glock-18 | Groundwater'), +('weapon_glock', 4, 3, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_red_light.png', 'Glock-18 | Candy Apple'), +('weapon_glock', 4, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aa_fade_light.png', 'Glock-18 | Fade'), +('weapon_glock', 4, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_night_light.png', 'Glock-18 | Night'), +('weapon_glock', 4, 48, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_dragon_glock_light.png', 'Glock-18 | Dragon Tattoo'), +('weapon_glock', 4, 84, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_ddpat_pink_light.png', 'Glock-18 | Pink DDPAT'), +('weapon_glock', 4, 159, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_brass_light.png', 'Glock-18 | Brass'), +('weapon_glock', 4, 208, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_sand_bravo_light.png', 'Glock-18 | Sand Dune'), +('weapon_glock', 4, 230, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_ddpatdense_silver_light.png', 'Glock-18 | Steel Disruption'), +('weapon_glock', 4, 278, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_craquelure_light.png', 'Glock-18 | Blue Fissure'), +('weapon_glock', 4, 293, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_nerodia_light.png', 'Glock-18 | Death Rattle'), +('weapon_glock', 4, 353, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock-liquescent_light.png', 'Glock-18 | Water Elemental'), +('weapon_glock', 4, 367, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_nuclear_pattern1_glock_light.png', 'Glock-18 | Reactor'), +('weapon_glock', 4, 381, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_glock_coiled_light.png', 'Glock-18 | Grinder'), +('weapon_glock', 4, 399, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_deathtoll_light.png', 'Glock-18 | Catacombs'), +('weapon_glock', 4, 437, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_aqua_flecks_light.png', 'Glock-18 | Twilight Galaxy'), +('weapon_glock', 4, 479, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_glock18_flames_blue_light.png', 'Glock-18 | Bunsen Burner'), +('weapon_glock', 4, 495, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock18_wrathys_light.png', 'Glock-18 | Wraiths'), +('weapon_glock', 4, 532, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock18_award_light.png', 'Glock-18 | Royal Legion'), +('weapon_glock', 4, 586, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_wasteland_rebel_light.png', 'Glock-18 | Wasteland Rebel'), +('weapon_glock', 4, 607, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock18_weasel_light.png', 'Glock-18 | Weasel'), +('weapon_glock', 4, 623, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_glock_dark-fall_light.png', 'Glock-18 | Ironwork'), +('weapon_glock', 4, 680, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_indigo_light.png', 'Glock-18 | Off World'), +('weapon_glock', 4, 694, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aa_glock_18_urban_moon_fever_light.png', 'Glock-18 | Moonrise'), +('weapon_glock', 4, 713, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock_thunder_dust_light.png', 'Glock-18 | Warhawk'), +('weapon_glock', 4, 732, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_leaf_blue_light.png', 'Glock-18 | Synth Leaf'), +('weapon_glock', 4, 789, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_nuclear_skulls_green_light.png', 'Glock-18 | Nuclear Garden'), +('weapon_glock', 4, 799, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aa_vertigo_blue_light.png', 'Glock-18 | High Beam'), +('weapon_glock', 4, 808, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock18_corroden_light.png', 'Glock-18 | Oxide Blaze'), +('weapon_glock', 4, 918, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_hero_light.png', 'Glock-18 | Sacrifice'), +('weapon_glock', 4, 957, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock18_warmaiden_light.png', 'Glock-18 | Bullet Queen'), +('weapon_glock', 4, 963, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_eyecontact_light.png', 'Glock-18 | Vogue'), +('weapon_glock', 4, 988, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_noir_light.png', 'Glock-18 | Neo-Noir'), +('weapon_glock', 4, 1016, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_money_glock_light.png', 'Glock-18 | Franklin'), +('weapon_glock', 4, 1039, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock_polymer_light.png', 'Glock-18 | Clear Polymer'), +('weapon_glock', 4, 1079, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_sp_tire_tread_red_light.png', 'Glock-18 | Red Tire'), +('weapon_glock', 4, 1100, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_snackattack_light.png', 'Glock-18 | Snack Attack'), +('weapon_glock', 4, 1119, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_emerald_marbleized_glock_light.png', 'Glock-18 | Gamma Doppler'), +('weapon_glock', 4, 1120, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase1_glock_light.png', 'Glock-18 | Gamma Doppler'), +('weapon_glock', 4, 1121, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase2_glock_light.png', 'Glock-18 | Gamma Doppler'), +('weapon_glock', 4, 1122, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase3_glock_light.png', 'Glock-18 | Gamma Doppler'), +('weapon_glock', 4, 1123, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase4_glock_light.png', 'Glock-18 | Gamma Doppler'), +('weapon_glock', 4, 1158, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock_elite_camo_light.png', 'Glock-18 | Winterized'), +('weapon_glock', 4, 1227, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_moon_rabbit_light.png', 'Glock-18 | Umbral Rabbit'), +('weapon_glock', 4, 1240, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_ramzes_light.png', 'Glock-18 | Ramese\'s Reach'), +('weapon_ak47', 7, 14, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_light.png', 'AK-47 | Red Laminate'), +('weapon_ak47', 7, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_aq_oiled_light.png', 'AK-47 | Case Hardened'), +('weapon_ak47', 7, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_sp_mesh_tan_light.png', 'AK-47 | Safari Mesh'), +('weapon_ak47', 7, 122, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_sp_spray_jungle_light.png', 'AK-47 | Jungle Spray'), +('weapon_ak47', 7, 170, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_sp_zebracam_light.png', 'AK-47 | Predator'), +('weapon_ak47', 7, 172, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_bw_light.png', 'AK-47 | Black Laminate'), +('weapon_ak47', 7, 180, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_fireserpent_ak47_bravo_light.png', 'AK-47 | Fire Serpent'), +('weapon_ak47', 7, 226, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_blue_light.png', 'AK-47 | Blue Laminate'), +('weapon_ak47', 7, 282, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_cobra_light.png', 'AK-47 | Redline'), +('weapon_ak47', 7, 300, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_pinstripe_ak47_light.png', 'AK-47 | Emerald Pinstripe'), +('weapon_ak47', 7, 302, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_rubber_light.png', 'AK-47 | Vulcan'), +('weapon_ak47', 7, 316, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_panther_ak47_light.png', 'AK-47 | Jaguar'), +('weapon_ak47', 7, 340, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_well_traveled_ak47_light.png', 'AK-47 | Jet Set'), +('weapon_ak47', 7, 341, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_green_leather_ak47_light.png', 'AK-47 | First Class'), +('weapon_ak47', 7, 380, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_tribute_ak47_light.png', 'AK-47 | Wasteland Rebel'), +('weapon_ak47', 7, 394, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_aq_ak47_cartel_light.png', 'AK-47 | Cartel'), +('weapon_ak47', 7, 422, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_mastery_light.png', 'AK-47 | Elite Build'), +('weapon_ak47', 7, 456, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_am_bamboo_jungle_light.png', 'AK-47 | Hydroponic'), +('weapon_ak47', 7, 474, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_courage_alt_light.png', 'AK-47 | Aquamarine Revenge'), +('weapon_ak47', 7, 490, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_winter_sport_light.png', 'AK-47 | Frontside Misty'), +('weapon_ak47', 7, 506, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_point_disarray_light.png', 'AK-47 | Point Disarray'), +('weapon_ak47', 7, 524, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_supercharged_light.png', 'AK-47 | Fuel Injector'), +('weapon_ak47', 7, 600, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_anarchy_light.png', 'AK-47 | Neon Revolution'), +('weapon_ak47', 7, 639, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_bloodsport_light.png', 'AK-47 | Bloodsport'), +('weapon_ak47', 7, 656, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak_colony01_red_light.png', 'AK-47 | Orbit Mk01'), +('weapon_ak47', 7, 675, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_empress_light.png', 'AK-47 | The Empress'), +('weapon_ak47', 7, 707, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_neon_rider_light.png', 'AK-47 | Neon Rider'), +('weapon_ak47', 7, 724, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_island_floral_light.png', 'AK-47 | Wild Lotus'), +('weapon_ak47', 7, 745, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_veneto_purple_light.png', 'AK-47 | Baroque Purple'), +('weapon_ak47', 7, 795, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_mesh_safetyorange_light.png', 'AK-47 | Safety Net'), +('weapon_ak47', 7, 801, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_asiimov_light.png', 'AK-47 | Asiimov'), +('weapon_ak47', 7, 836, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_aztec_light.png', 'AK-47 | Uncharted'), +('weapon_ak47', 7, 885, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_nibbler_light.png', 'AK-47 | Rat Rod'), +('weapon_ak47', 7, 921, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_gold_arabesque_light.png', 'AK-47 | Gold Arabesque'), +('weapon_ak47', 7, 941, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak-47_phantom_disruptor_light.png', 'AK-47 | Phantom Disruptor'), +('weapon_ak47', 7, 959, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_anubis_light.png', 'AK-47 | Legion of Anubis'), +('weapon_ak47', 7, 1004, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_xray_light.png', 'AK-47 | X-Ray'), +('weapon_ak47', 7, 1018, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_jaguar_light.png', 'AK-47 | Panthera onca'), +('weapon_ak47', 7, 1035, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_professional_light.png', 'AK-47 | Slate'), +('weapon_ak47', 7, 1070, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_green_light.png', 'AK-47 | Green Laminate'), +('weapon_ak47', 7, 1087, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_abstract_light.png', 'AK-47 | Leet Museo'), +('weapon_ak47', 7, 1141, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_nightwish_light.png', 'AK-47 | Nightwish'), +('weapon_ak47', 7, 1143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_cogthings_light.png', 'AK-47 | Ice Coaled'), +('weapon_ak47', 7, 1221, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_head_shot_holo_light.png', 'AK-47 | Head Shot'), +('weapon_ak47', 7, 1238, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_strone_light.png', 'AK-47 | Steel Delta'), +('weapon_aug', 8, 9, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_tiger_light.png', 'AUG | Bengal Tiger'), +('weapon_aug', 8, 10, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_copperhead_light.png', 'AUG | Copperhead'), +('weapon_aug', 8, 33, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_an_red_light.png', 'AUG | Hot Rod'), +('weapon_aug', 8, 46, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_so_pmc_light.png', 'AUG | Contractor'), +('weapon_aug', 8, 47, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_so_space_marine_light.png', 'AUG | Colony'), +('weapon_aug', 8, 73, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_feathers_aug_light.png', 'AUG | Wings'), +('weapon_aug', 8, 100, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_so_stormfront_light.png', 'AUG | Storm'), +('weapon_aug', 8, 110, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_mesh_forest_fire_light.png', 'AUG | Condemned'), +('weapon_aug', 8, 197, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_an_navy_bravo_light.png', 'AUG | Anodized Navy'), +('weapon_aug', 8, 246, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_aa_fade_metallic_light.png', 'AUG | Amber Fade'), +('weapon_aug', 8, 280, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_chameleonaire_light.png', 'AUG | Chameleon'), +('weapon_aug', 8, 305, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_progressiv_light.png', 'AUG | Torque'), +('weapon_aug', 8, 375, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_nukestripe_orange_aug_light.png', 'AUG | Radiation Hazard'), +('weapon_aug', 8, 444, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_labyrinth3_light.png', 'AUG | Daedalus'), +('weapon_aug', 8, 455, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_anime_aug_light.png', 'AUG | Akihabara Accept'), +('weapon_aug', 8, 507, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_aug_jumble_light.png', 'AUG | Ricochet'), +('weapon_aug', 8, 541, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_swallows_light.png', 'AUG | Fleet Flock'), +('weapon_aug', 8, 583, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_aristocrat_light.png', 'AUG | Aristocrat'), +('weapon_aug', 8, 601, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_syd_mead_light.png', 'AUG | Syd Mead'), +('weapon_aug', 8, 674, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_orange_triangle_light.png', 'AUG | Triqua'), +('weapon_aug', 8, 690, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_stymphalian_birds_light.png', 'AUG | Stymphalian'), +('weapon_aug', 8, 708, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_aug_torn_orange_light.png', 'AUG | Amber Slipstream'), +('weapon_aug', 8, 727, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_bloom_blue_light.png', 'AUG | Midnight Lily'), +('weapon_aug', 8, 740, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_murano_blue_light.png', 'AUG | Navy Murano'), +('weapon_aug', 8, 758, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_jorm_orange_light.png', 'AUG | Flame Jörmungandr'), +('weapon_aug', 8, 779, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_circuitboard_orange_light.png', 'AUG | Random Access'), +('weapon_aug', 8, 794, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_mesh_safetyblack_light.png', 'AUG | Sweeper'), +('weapon_aug', 8, 823, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_sand_storm_light.png', 'AUG | Sand Storm'), +('weapon_aug', 8, 845, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_momentum_light.png', 'AUG | Momentum'), +('weapon_aug', 8, 886, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_whitefang_light.png', 'AUG | Arctic Wolf'), +('weapon_aug', 8, 913, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_aug_death_by_doggy_light.png', 'AUG | Death by Puppy'), +('weapon_aug', 8, 927, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_dry_wood_light.png', 'AUG | Spalted Wood'), +('weapon_aug', 8, 942, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_thunderstorm_light.png', 'AUG | Tom Cat'), +('weapon_aug', 8, 995, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_intelligence_grey_light.png', 'AUG | Surveillance'), +('weapon_aug', 8, 1033, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_jade_light.png', 'AUG | Carved Jade'), +('weapon_aug', 8, 1088, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_plague_light.png', 'AUG | Plague'), +('weapon_aug', 8, 1249, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_dune_trap_light.png', 'AUG | Snake Pit'), +('weapon_awp', 9, 30, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_sp_snake_light.png', 'AWP | Snake Camo'), +('weapon_awp', 9, 51, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_lightning_awp_light.png', 'AWP | Lightning Strike'), +('weapon_awp', 9, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_sp_mesh_tan_light.png', 'AWP | Safari Mesh'), +('weapon_awp', 9, 84, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_ddpat_pink_light.png', 'AWP | Pink DDPAT'), +('weapon_awp', 9, 174, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_blam_simple_light.png', 'AWP | BOOM'), +('weapon_awp', 9, 181, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_favela_awp_light.png', 'AWP | Corticera'), +('weapon_awp', 9, 212, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_crumple_bravo_light.png', 'AWP | Graphite'), +('weapon_awp', 9, 227, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_hive_light.png', 'AWP | Electric Hive'), +('weapon_awp', 9, 251, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_snakeskin_light.png', 'AWP | Pit Viper'), +('weapon_awp', 9, 259, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_cobra_light.png', 'AWP | Redline'), +('weapon_awp', 9, 279, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_asimov_light.png', 'AWP | Asiimov'), +('weapon_awp', 9, 344, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_medieval_dragon_awp_light.png', 'AWP | Dragon Lore'), +('weapon_awp', 9, 395, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_awp_glory_light.png', 'AWP | Man-o\'-war'), +('weapon_awp', 9, 424, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_aq_awp_twine_light.png', 'AWP | Worm God'), +('weapon_awp', 9, 446, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_medusa_awp_light.png', 'AWP | Medusa'), +('weapon_awp', 9, 451, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_zodiac2_light.png', 'AWP | Sun in Leo'), +('weapon_awp', 9, 475, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_hyper_beast_light.png', 'AWP | Hyper Beast'), +('weapon_awp', 9, 525, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_mastery_light.png', 'AWP | Elite Build'), +('weapon_awp', 9, 584, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_phobos_light.png', 'AWP | Phobos'), +('weapon_awp', 9, 640, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_psychopath_light.png', 'AWP | Fever Dream'), +('weapon_awp', 9, 662, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_hannya_light.png', 'AWP | Oni Taiji'), +('weapon_awp', 9, 691, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_death_light.png', 'AWP | Mortis'), +('weapon_awp', 9, 718, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_awp_pawpaw_light.png', 'AWP | PAW'), +('weapon_awp', 9, 736, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_enamel_light.png', 'AWP | The Prince'), +('weapon_awp', 9, 756, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_gungnir_light.png', 'AWP | Gungnir'), +('weapon_awp', 9, 788, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_nuclear_skulls_redblue_light.png', 'AWP | Acheron'), +('weapon_awp', 9, 803, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_neonoir_light.png', 'AWP | Neo-Noir'), +('weapon_awp', 9, 819, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_hydra_light.png', 'AWP | Desert Hydra'), +('weapon_awp', 9, 838, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_viper_light.png', 'AWP | Atheris'), +('weapon_awp', 9, 887, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_virus_light.png', 'AWP | Containment Breach'), +('weapon_awp', 9, 917, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_wildfire_light.png', 'AWP | Wildfire'), +('weapon_awp', 9, 943, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_vein_light.png', 'AWP | Capillary'), +('weapon_awp', 9, 975, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_exoskeleton_light.png', 'AWP | Exoskeleton'), +('weapon_awp', 9, 1026, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_aa_awp_fade_light.png', 'AWP | Fade'), +('weapon_awp', 9, 1029, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_tigers_blue_light.png', 'AWP | Silk Tiger'), +('weapon_awp', 9, 1058, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_technowar_rwb_light.png', 'AWP | POP AWP'), +('weapon_awp', 9, 1144, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_chroma_pink_light.png', 'AWP | Chromatic Aberration'), +('weapon_awp', 9, 1222, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_limbo_snake_light.png', 'AWP | Duality'), +('weapon_awp', 9, 1239, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_strone_light.png', 'AWP | Black Nile'), +('weapon_famas', 10, 22, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_spray_light.png', 'FAMAS | Contrast Spray'), +('weapon_famas', 10, 47, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_so_space_marine_light.png', 'FAMAS | Colony'), +('weapon_famas', 10, 60, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_zebra_dark_light.png', 'FAMAS | Dark Water'), +('weapon_famas', 10, 92, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_reef_light.png', 'FAMAS | Cyanospatter'), +('weapon_famas', 10, 154, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_broken_path_famas_light.png', 'FAMAS | Afterimage'), +('weapon_famas', 10, 178, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_doomkitty_light.png', 'FAMAS | Doomkitty'), +('weapon_famas', 10, 194, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_light.png', 'FAMAS | Spitfire'), +('weapon_famas', 10, 218, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_bluehex_light.png', 'FAMAS | Hexane'), +('weapon_famas', 10, 240, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_varicamo_desert_light.png', 'FAMAS | CaliCamo'), +('weapon_famas', 10, 244, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_light.png', 'FAMAS | Teardown'), +('weapon_famas', 10, 260, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_pulse_light.png', 'FAMAS | Pulse'), +('weapon_famas', 10, 288, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_an_famas_sgt_light.png', 'FAMAS | Sergeant'), +('weapon_famas', 10, 371, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_light.png', 'FAMAS | Styx'), +('weapon_famas', 10, 429, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_aq_famas_jinn_light.png', 'FAMAS | Djinn'), +('weapon_famas', 10, 477, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_famas_dots_light.png', 'FAMAS | Neural Net'), +('weapon_famas', 10, 492, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_lenta_light.png', 'FAMAS | Survivor Z'), +('weapon_famas', 10, 529, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_aq_famas_contour_light.png', 'FAMAS | Valence'), +('weapon_famas', 10, 604, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_rally_light.png', 'FAMAS | Roll Cage'), +('weapon_famas', 10, 626, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_mecha_light.png', 'FAMAS | Mecha Industries'), +('weapon_famas', 10, 659, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_famas_macabre_light.png', 'FAMAS | Macabre'), +('weapon_famas', 10, 723, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_owl_orange_light.png', 'FAMAS | Eye of Athena'), +('weapon_famas', 10, 835, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_famas_ghost_insects_light.png', 'FAMAS | Crypsis'), +('weapon_famas', 10, 863, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_knots_blue_light.png', 'FAMAS | Night Borre'), +('weapon_famas', 10, 869, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_palm_sunset_light.png', 'FAMAS | Sundown'), +('weapon_famas', 10, 904, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_nuke_tension_light.png', 'FAMAS | Decommissioned'), +('weapon_famas', 10, 919, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_legacy_gold_light.png', 'FAMAS | Commemoration'), +('weapon_famas', 10, 999, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_numbers_magenta_light.png', 'FAMAS | Prime Conspiracy'), +('weapon_famas', 10, 1053, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_nuclear_pattern4_famas_light.png', 'FAMAS | Meltdown'), +('weapon_famas', 10, 1066, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_aa_wiring_yellow_light.png', 'FAMAS | Faulty Wiring'), +('weapon_famas', 10, 1092, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_spectron_light.png', 'FAMAS | ZX Spectron'), +('weapon_famas', 10, 1127, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_rapid_eyes_light.png', 'FAMAS | Rapid Eye Movement'), +('weapon_famas', 10, 1146, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_corp_meow_light.png', 'FAMAS | Meow 36'), +('weapon_famas', 10, 1241, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_holo_ocean_light.png', 'FAMAS | Waters of Nephthys'), +('weapon_g3sg1', 10, 6, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_arctic_light.png', 'G3SG1 | Arctic Camo'), +('weapon_g3sg1', 10, 8, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_desert_light.png', 'G3SG1 | Desert Storm'), +('weapon_g3sg1', 10, 46, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_so_pmc_light.png', 'G3SG1 | Contractor'), +('weapon_g3sg1', 10, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_mesh_tan_light.png', 'G3SG1 | Safari Mesh'), +('weapon_g3sg1', 10, 74, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_arctic_contrast_light.png', 'G3SG1 | Polar Camo'), +('weapon_g3sg1', 10, 147, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_tape_short_jungle_light.png', 'G3SG1 | Jungle Dashed'), +('weapon_g3sg1', 10, 195, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_bluepolygon_bravo_light.png', 'G3SG1 | Demeter'), +('weapon_g3sg1', 10, 229, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_zebracam_blue_light.png', 'G3SG1 | Azure Zebra'), +('weapon_g3sg1', 10, 235, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_varicamo_light.png', 'G3SG1 | VariCamo'), +('weapon_g3sg1', 10, 294, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_so_green_light.png', 'G3SG1 | Green Apple'), +('weapon_g3sg1', 10, 382, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_am_g3sg1_murky_light.png', 'G3SG1 | Murky'), +('weapon_g3sg1', 10, 438, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_chronos_g3sg1_light.png', 'G3SG1 | Chronos'), +('weapon_g3sg1', 10, 465, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_kimono_diamonds_orange_light.png', 'G3SG1 | Orange Kimono'), +('weapon_g3sg1', 10, 493, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_flux_purple_light.png', 'G3SG1 | Flux'), +('weapon_g3sg1', 10, 511, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_executioner_light.png', 'G3SG1 | The Executioner'), +('weapon_g3sg1', 10, 545, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_g3sg1_militiaorange_light.png', 'G3SG1 | Orange Crash'), +('weapon_g3sg1', 10, 606, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_ventilator_light.png', 'G3SG1 | Ventilator'), +('weapon_g3sg1', 10, 628, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_viper_yellow_light.png', 'G3SG1 | Stinger'), +('weapon_g3sg1', 10, 677, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_cetme_redux_light.png', 'G3SG1 | Hunter'), +('weapon_g3sg1', 10, 712, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_buccaneer_light.png', 'G3SG1 | High Seas'), +('weapon_g3sg1', 10, 739, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_am_murano_violet_light.png', 'G3SG1 | Violet Murano'), +('weapon_g3sg1', 10, 806, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_savage_light.png', 'G3SG1 | Scavenger'), +('weapon_g3sg1', 10, 891, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_blacksand_light.png', 'G3SG1 | Black Sand'), +('weapon_g3sg1', 10, 930, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_moro_carving_lightblue_light.png', 'G3SG1 | New Roots'), +('weapon_g3sg1', 10, 980, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_disrupt_light.png', 'G3SG1 | Digital Mesh'), +('weapon_g3sg1', 10, 1034, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_am_ancient_wine_light.png', 'G3SG1 | Ancient Ritual'), +('weapon_g3sg1', 10, 1095, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_tacticalmap_light.png', 'G3SG1 | Keeping Tabs'), +('weapon_g3sg1', 10, 1129, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_glade_light.png', 'G3SG1 | Dream Glade'), +('weapon_galilar', 13, 76, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_forest_winter_light.png', 'Galil AR | Winter Forest'), +('weapon_galilar', 13, 83, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_ddpat_orange_light.png', 'Galil AR | Orange DDPAT'), +('weapon_galilar', 13, 101, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_so_tornado_light.png', 'Galil AR | Tornado'), +('weapon_galilar', 13, 119, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_spray_desert_sage_light.png', 'Galil AR | Sage Spray'), +('weapon_galilar', 13, 192, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_crumple_bravo_light.png', 'Galil AR | Shattered'), +('weapon_galilar', 13, 216, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_an_titanium30v_light.png', 'Galil AR | Blue Titanium'), +('weapon_galilar', 13, 235, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_varicamo_light.png', 'Galil AR | VariCamo'), +('weapon_galilar', 13, 237, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_varicamo_urban_light.png', 'Galil AR | Urban Rubble'), +('weapon_galilar', 13, 241, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_mesh_slashes_light.png', 'Galil AR | Hunting Blind'), +('weapon_galilar', 13, 246, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_aa_fade_metallic_light.png', 'Galil AR | Amber Fade'), +('weapon_galilar', 13, 264, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_sandstorm_light.png', 'Galil AR | Sandstorm'), +('weapon_galilar', 13, 297, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_so_orca_light.png', 'Galil AR | Tuxedo'), +('weapon_galilar', 13, 308, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_galil_kami_light.png', 'Galil AR | Kami'), +('weapon_galilar', 13, 379, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_cerbrus_galil_light.png', 'Galil AR | Cerberus'), +('weapon_galilar', 13, 398, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_abrasion_light.png', 'Galil AR | Chatterbox'), +('weapon_galilar', 13, 428, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_eco_light.png', 'Galil AR | Eco'), +('weapon_galilar', 13, 460, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_am_geometric_steps_light.png', 'Galil AR | Aqua Terrace'), +('weapon_galilar', 13, 478, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galilar_particles_light.png', 'Galil AR | Rocket Pop'), +('weapon_galilar', 13, 494, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galil_nightwing_light.png', 'Galil AR | Stone Cold'), +('weapon_galilar', 13, 546, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galilar_incenerator_light.png', 'Galil AR | Firefight'), +('weapon_galilar', 13, 629, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_ar-camo_light.png', 'Galil AR | Black Sand'), +('weapon_galilar', 13, 647, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_galil_wave_light.png', 'Galil AR | Crimson Tsunami'), +('weapon_galilar', 13, 661, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_candychaos_light.png', 'Galil AR | Sugar Rush'), +('weapon_galilar', 13, 790, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_nuclear_skulls_aqua_light.png', 'Galil AR | Cold Fusion'), +('weapon_galilar', 13, 807, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_galil_signal_red_light.png', 'Galil AR | Signal'), +('weapon_galilar', 13, 842, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_galil_akoben_light.png', 'Galil AR | Akoben'), +('weapon_galilar', 13, 972, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galil_phoenix_light.png', 'Galil AR | Connexion'), +('weapon_galilar', 13, 981, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galil_vandal_light.png', 'Galil AR | Vandal'), +('weapon_galilar', 13, 1013, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_phoenix_tags_purple_light.png', 'Galil AR | Phoenix Blacklight'), +('weapon_galilar', 13, 1032, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_ruins_red_light.png', 'Galil AR | Dusk Ruins'), +('weapon_galilar', 13, 1038, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_chroma_pink_light.png', 'Galil AR | Chromatic Aberration'), +('weapon_galilar', 13, 1071, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_galil_caution_light.png', 'Galil AR | CAUTION!'), +('weapon_galilar', 13, 1147, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_destroyer_light.png', 'Galil AR | Destroyer'), +('weapon_m249', 14, 22, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_spray_light.png', 'M249 | Contrast Spray'), +('weapon_m249', 14, 75, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_hy_blizzard_light.png', 'M249 | Blizzard Marbleized'), +('weapon_m249', 14, 151, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_so_jungle_light.png', 'M249 | Jungle'), +('weapon_m249', 14, 170, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_zebracam_light.png', 'M249 | Predator'), +('weapon_m249', 14, 202, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_hy_ddpat_jungle_bravo_light.png', 'M249 | Jungle DDPAT'), +('weapon_m249', 14, 243, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_mesh_python_light.png', 'M249 | Gator Mesh'), +('weapon_m249', 14, 266, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_aq_obsidian_light.png', 'M249 | Magma'), +('weapon_m249', 14, 401, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_sektor_light.png', 'M249 | System Lock'), +('weapon_m249', 14, 452, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_hy_zodiac3_light.png', 'M249 | Shipping Forecast'), +('weapon_m249', 14, 472, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_so_keycolors_light.png', 'M249 | Impact Drill'), +('weapon_m249', 14, 496, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_gs_m249_nebula_crusader_light.png', 'M249 | Nebula Crusader'), +('weapon_m249', 14, 547, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_spectre_light.png', 'M249 | Spectre'), +('weapon_m249', 14, 648, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_m249_frog_original_light.png', 'M249 | Emerald Poison Dart'), +('weapon_m249', 14, 827, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_moro_carving_burnt_light.png', 'M249 | Humidor'), +('weapon_m249', 14, 900, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_gs_m249_warbird_veteran_light.png', 'M249 | Warbird'), +('weapon_m249', 14, 902, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_aq_m249_aztec_light.png', 'M249 | Aztec'), +('weapon_m249', 14, 933, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_palm_night_light.png', 'M249 | Midnight Palm'), +('weapon_m249', 14, 983, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_deep_relief_light.png', 'M249 | Deep Relief'), +('weapon_m249', 14, 1042, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_gs_m249_combine_light.png', 'M249 | O.S.I.P.R.'), +('weapon_m249', 14, 1148, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_downvote_light.png', 'M249 | Downtown'), +('weapon_m249', 14, 1242, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_scarab_light.png', 'M249 | Submerged'), +('weapon_m4a1', 16, 8, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_desert_light.png', 'M4A4 | Desert Storm'), +('weapon_m4a1', 16, 16, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_v_tiger_light.png', 'M4A4 | Jungle Tiger'), +('weapon_m4a1', 16, 17, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_ddpat_urb_light.png', 'M4A4 | Urban DDPAT'), +('weapon_m4a1', 16, 101, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_so_tornado_light.png', 'M4A4 | Tornado'), +('weapon_m4a1', 16, 155, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_bullet_rain_m4a1_light.png', 'M4A4 | Bullet Rain'), +('weapon_m4a1', 16, 164, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_hunter_modern_light.png', 'M4A4 | Modern Hunter'), +('weapon_m4a1', 16, 167, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_nukestripe_orange_light.png', 'M4A4 | Radiation Hazard'), +('weapon_m4a1', 16, 176, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_zebracam_bw_light.png', 'M4A4 | Faded Zebra'), +('weapon_m4a1', 16, 187, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_star_bravo_light.png', 'M4A4 | Zirka'), +('weapon_m4a1', 16, 215, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_xray_m4_light.png', 'M4A4 | X-Ray'), +('weapon_m4a1', 16, 255, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4_asimov_light.png', 'M4A4 | Asiimov'), +('weapon_m4a1', 16, 309, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a1_howling_light.png', 'M4A4 | Howl'), +('weapon_m4a1', 16, 336, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_titanstorm_light.png', 'M4A4 | Desert-Strike'), +('weapon_m4a1', 16, 384, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_griffin_light.png', 'M4A4 | Griffin'), +('weapon_m4a1', 16, 400, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_ancestral_light.png', 'M4A4 | 龍王 (Dragon King)'), +('weapon_m4a1', 16, 449, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_poseidon_light.png', 'M4A4 | Poseidon'), +('weapon_m4a1', 16, 471, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_am_kimono_sunrise_light.png', 'M4A4 | Daybreak'), +('weapon_m4a1', 16, 480, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_evil_daimyo_light.png', 'M4A4 | Evil Daimyo'), +('weapon_m4a1', 16, 512, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_royal_squire_light.png', 'M4A4 | Royal Paladin'), +('weapon_m4a1', 16, 533, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_light.png', 'M4A4 | The Battlestar'), +('weapon_m4a1', 16, 588, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_desolate_space_light.png', 'M4A4 | Desolate Space'), +('weapon_m4a1', 16, 632, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_sector_light.png', 'M4A4 | Buzz Kill'), +('weapon_m4a1', 16, 664, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_hellfire_light.png', 'M4A4 | Hellfire'), +('weapon_m4a1', 16, 695, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_neo_noir_light.png', 'M4A4 | Neo-Noir'), +('weapon_m4a1', 16, 730, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_bud_blue_light.png', 'M4A4 | Dark Blossom'), +('weapon_m4a1', 16, 780, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_am_circuitboard_silver_light.png', 'M4A4 | Mainframe'), +('weapon_m4a1', 16, 793, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_red_hex_light.png', 'M4A4 | Converter'), +('weapon_m4a1', 16, 811, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_chopper_ghost_light.png', 'M4A4 | Magnesium'), +('weapon_m4a1', 16, 844, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_emperor_light.png', 'M4A4 | The Emperor'), +('weapon_m4a1', 16, 926, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_ddpat_urban_red_light.png', 'M4A4 | Red DDPAT'), +('weapon_m4a1', 16, 971, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_queenfairy_light.png', 'M4A4 | Tooth Fairy'), +('weapon_m4a1', 16, 985, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_cyberpunk_light.png', 'M4A4 | Cyber Security'), +('weapon_m4a1', 16, 993, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_csgo_camo_light.png', 'M4A4 | Global Offensive'), +('weapon_m4a1', 16, 1041, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_love_light.png', 'M4A4 | In Living Color'), +('weapon_m4a1', 16, 1063, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_coalition_light.png', 'M4A4 | The Coalition'), +('weapon_m4a1', 16, 1097, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4_flowers_light.png', 'M4A4 | Spider Lily'), +('weapon_m4a1', 16, 1149, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_elite_tactical_light.png', 'M4A4 | Poly Mag'), +('weapon_m4a1', 16, 1228, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_temukau_light.png', 'M4A4 | Temukau'), +('weapon_m4a1', 16, 1255, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_ra_light.png', 'M4A4 | Eye of Horus'), +('weapon_mac10', 17, 3, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_red_light.png', 'MAC-10 | Candy Apple'), +('weapon_mac10', 17, 17, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_hy_ddpat_urb_light.png', 'MAC-10 | Urban DDPAT'), +('weapon_mac10', 17, 32, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_an_silver_light.png', 'MAC-10 | Silver'), +('weapon_mac10', 17, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aa_fade_light.png', 'MAC-10 | Fade'), +('weapon_mac10', 17, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aq_oiled_light.png', 'MAC-10 | Case Hardened'), +('weapon_mac10', 17, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_purple_light.png', 'MAC-10 | Ultraviolet'), +('weapon_mac10', 17, 101, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_tornado_light.png', 'MAC-10 | Tornado'), +('weapon_mac10', 17, 157, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_sp_palm_light.png', 'MAC-10 | Palm'), +('weapon_mac10', 17, 188, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aq_etched_mac10_bravo_light.png', 'MAC-10 | Graven'), +('weapon_mac10', 17, 246, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aa_fade_metallic_light.png', 'MAC-10 | Amber Fade'), +('weapon_mac10', 17, 284, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_redhot_light.png', 'MAC-10 | Heat'), +('weapon_mac10', 17, 310, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_decay_light.png', 'MAC-10 | Curse'), +('weapon_mac10', 17, 333, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_indigo_and_grey_light.png', 'MAC-10 | Indigo'), +('weapon_mac10', 17, 337, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_korupt_light.png', 'MAC-10 | Tatter'), +('weapon_mac10', 17, 343, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_luggage_mac10_light.png', 'MAC-10 | Commuter'), +('weapon_mac10', 17, 372, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_nuclear_skulls3_mac10_light.png', 'MAC-10 | Nuclear Garden'), +('weapon_mac10', 17, 402, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_malachite_light.png', 'MAC-10 | Malachite'), +('weapon_mac10', 17, 433, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_neonrider_light.png', 'MAC-10 | Neon Rider'), +('weapon_mac10', 17, 498, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_alekhya_duo_light.png', 'MAC-10 | Rangeen'), +('weapon_mac10', 17, 534, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_electricity_light.png', 'MAC-10 | Lapis Gator'), +('weapon_mac10', 17, 589, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aq_mac_10_alien_camo_light.png', 'MAC-10 | Carnivore'), +('weapon_mac10', 17, 651, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aa_mac10_the_last_dive_light.png', 'MAC-10 | Last Dive'), +('weapon_mac10', 17, 665, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_aloha_light.png', 'MAC-10 | Aloha'), +('weapon_mac10', 17, 682, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_oceani_light.png', 'MAC-10 | Oceanic'), +('weapon_mac10', 17, 742, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_ren_red_light.png', 'MAC-10 | Red Filigree'), +('weapon_mac10', 17, 748, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_checker_light.png', 'MAC-10 | Calf Skin'), +('weapon_mac10', 17, 761, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_knots_brown_light.png', 'MAC-10 | Copper Borre'), +('weapon_mac10', 17, 812, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_exo_pipes_light.png', 'MAC-10 | Pipe Down'), +('weapon_mac10', 17, 826, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_sp_mirage_flowers_tan_light.png', 'MAC-10 | Sienna Damask'), +('weapon_mac10', 17, 840, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_fish_bait_light.png', 'MAC-10 | Whitefish'), +('weapon_mac10', 17, 871, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_sp_twigs_beach_light.png', 'MAC-10 | Surfwood'), +('weapon_mac10', 17, 898, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_stalker_light.png', 'MAC-10 | Stalker'), +('weapon_mac10', 17, 908, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_dust_crate_light.png', 'MAC-10 | Classic Crate'), +('weapon_mac10', 17, 947, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_nacre_light.png', 'MAC-10 | Disco Tech'), +('weapon_mac10', 17, 965, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_isoonna_light.png', 'MAC-10 | Allure'), +('weapon_mac10', 17, 1009, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_snake_light.png', 'MAC-10 | Hot Snakes'), +('weapon_mac10', 17, 1025, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_gold_brick_light.png', 'MAC-10 | Gold Brick'), +('weapon_mac10', 17, 1045, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_portable_light.png', 'MAC-10 | Button Masher'), +('weapon_mac10', 17, 1067, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_propaganda_light.png', 'MAC-10 | Propaganda'), +('weapon_mac10', 17, 1075, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_hy_vertigospray_blue_light.png', 'MAC-10 | Strats'), +('weapon_mac10', 17, 1098, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_toybox_light.png', 'MAC-10 | Toybox'), +('weapon_mac10', 17, 1131, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_pixie_light.png', 'MAC-10 | Ensnared'), +('weapon_mac10', 17, 1150, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_monkeyflage_light.png', 'MAC-10 | Monkeyflage'), +('weapon_mac10', 17, 1229, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_sakkaku_light.png', 'MAC-10 | Sakkaku'), +('weapon_mac10', 17, 1244, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_scarab_light.png', 'MAC-10 | Echoing Sands'), +('weapon_p90', 19, 20, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_zombie_light.png', 'P90 | Virus'), +('weapon_p90', 19, 67, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_slither_p90_light.png', 'P90 | Cold Blooded'), +('weapon_p90', 19, 100, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_so_stormfront_light.png', 'P90 | Storm'), +('weapon_p90', 19, 111, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_mesh_glacier_light.png', 'P90 | Glacier Mesh'), +('weapon_p90', 19, 124, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_spray_sand_light.png', 'P90 | Sand Spray'), +('weapon_p90', 19, 156, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_catskulls_p90_light.png', 'P90 | Death by Kitty'), +('weapon_p90', 19, 169, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_nukestripe_maroon_light.png', 'P90 | Fallout Warning'), +('weapon_p90', 19, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_dapple_light.png', 'P90 | Scorched'), +('weapon_p90', 19, 182, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_dragon_p90_bravo_light.png', 'P90 | Emerald Dragon'), +('weapon_p90', 19, 228, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_modspots_light.png', 'P90 | Blind Spot'), +('weapon_p90', 19, 234, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_twigs_light.png', 'P90 | Ash Wood'), +('weapon_p90', 19, 244, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_mesh_hot_and_cold_light.png', 'P90 | Teardown'), +('weapon_p90', 19, 283, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_trigon_light.png', 'P90 | Trigon'), +('weapon_p90', 19, 311, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_scorpius_light.png', 'P90 | Desert Warfare'), +('weapon_p90', 19, 335, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_an_royalbleed_light.png', 'P90 | Module'), +('weapon_p90', 19, 342, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_brown_leather_p90_light.png', 'P90 | Leather'), +('weapon_p90', 19, 359, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90-asiimov_light.png', 'P90 | Asiimov'), +('weapon_p90', 19, 486, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_mastery_light.png', 'P90 | Elite Build'), +('weapon_p90', 19, 516, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_shapewood_light.png', 'P90 | Shapewood'), +('weapon_p90', 19, 593, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_full_throttle_light.png', 'P90 | Chopper'), +('weapon_p90', 19, 611, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_grimm_light.png', 'P90 | Grim'), +('weapon_p90', 19, 636, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_shallow_grave_light.png', 'P90 | Shallow Grave'), +('weapon_p90', 19, 669, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_p90_barebones_blue_light.png', 'P90 | Death Grip'), +('weapon_p90', 19, 717, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_tread_light.png', 'P90 | Traction'), +('weapon_p90', 19, 726, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_bloom_orange_light.png', 'P90 | Sunset Lily'), +('weapon_p90', 19, 744, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_veneto_red_light.png', 'P90 | Baroque Red'), +('weapon_p90', 19, 759, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_jorm_blue_light.png', 'P90 | Astral Jörmungandr'), +('weapon_p90', 19, 776, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_blueprint_aqua_light.png', 'P90 | Facility Negative'), +('weapon_p90', 19, 828, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_moro_textile_green_vine_light.png', 'P90 | Verdant Growth'), +('weapon_p90', 19, 849, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_offworld_light.png', 'P90 | Off World'), +('weapon_p90', 19, 911, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_nostalgia_light.png', 'P90 | Nostalgia'), +('weapon_p90', 19, 925, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_ddpat_desert_light.png', 'P90 | Desert DDPAT'), +('weapon_p90', 19, 969, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_container_light.png', 'P90 | Freight'), +('weapon_p90', 19, 977, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_p90_dino_rampage_light.png', 'P90 | Cocoa Rampage'), +('weapon_p90', 19, 1000, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_jaguar_p90_light.png', 'P90 | Run and Hide'), +('weapon_p90', 19, 1015, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_tigers_brown_light.png', 'P90 | Tiger Pit'), +('weapon_p90', 19, 1020, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_aa_ancient_brown_light.png', 'P90 | Ancient Earth'), +('weapon_p90', 19, 1074, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_vertigogeo_light.png', 'P90 | Schematic'), +('weapon_p90', 19, 1154, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_tangled_light.png', 'P90 | Vent Rush'), +('weapon_p90', 19, 1233, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_neoqueen_light.png', 'P90 | Neoqueen'), +('weapon_p90', 19, 1250, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_scarab_of_wisdom_light.png', 'P90 | ScaraB Rush'), +('weapon_mp5sd', 23, 753, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_sp_tape_short_rally_light.png', 'MP5-SD | Dirt Drop'), +('weapon_mp5sd', 23, 781, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_am_circuitboard_aqua_light.png', 'MP5-SD | Co-Processor'), +('weapon_mp5sd', 23, 798, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_so_orange_accents3_light.png', 'MP5-SD | Nitro'), +('weapon_mp5sd', 23, 800, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_hy_labrat_mp5_light.png', 'MP5-SD | Lab Rats'), +('weapon_mp5sd', 23, 810, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_festival_drip_light.png', 'MP5-SD | Phosphor'), +('weapon_mp5sd', 23, 846, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5sd_astromatic_light.png', 'MP5-SD | Gauss'), +('weapon_mp5sd', 23, 872, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_hy_bamboo_stmarc_light.png', 'MP5-SD | Bamboo Garden'), +('weapon_mp5sd', 23, 888, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_etch_light.png', 'MP5-SD | Acid Wash'), +('weapon_mp5sd', 23, 915, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_fbi_light.png', 'MP5-SD | Agent'), +('weapon_mp5sd', 23, 923, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_neon_flektarn_light.png', 'MP5-SD | Oxide Oasis'), +('weapon_mp5sd', 23, 949, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_cu_mp5_desert_strike_light.png', 'MP5-SD | Desert Strike'), +('weapon_mp5sd', 23, 974, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5sd_wasteland_legacy_light.png', 'MP5-SD | Kitbash'), +('weapon_mp5sd', 23, 986, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_conditionzero_light.png', 'MP5-SD | Condition Zero'), +('weapon_mp5sd', 23, 1061, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_hy_trainarchitect_light.png', 'MP5-SD | Autumn Twilly'), +('weapon_mp5sd', 23, 1137, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_kid_necronomicon_light.png', 'MP5-SD | Necro Jr.'), +('weapon_mp5sd', 23, 1231, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_cu_mp5sd_quick_liquidation_light.png', 'MP5-SD | Liquidation'), +('weapon_ump45', 24, 15, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_gelpen_light.png', 'UMP-45 | Gunsmoke'), +('weapon_ump45', 24, 17, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_ddpat_urb_light.png', 'UMP-45 | Urban DDPAT'), +('weapon_ump45', 24, 37, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_flames_light.png', 'UMP-45 | Blaze'), +('weapon_ump45', 24, 70, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_am_carbon_fiber_light.png', 'UMP-45 | Carbon Fiber'), +('weapon_ump45', 24, 90, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_mottled_sand_light.png', 'UMP-45 | Mudder'), +('weapon_ump45', 24, 93, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_so_caramel_light.png', 'UMP-45 | Caramel'), +('weapon_ump45', 24, 169, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_nukestripe_maroon_light.png', 'UMP-45 | Fallout Warning'), +('weapon_ump45', 24, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_dapple_light.png', 'UMP-45 | Scorched'), +('weapon_ump45', 24, 193, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_skull_diagram_bravo_light.png', 'UMP-45 | Bone Pile'), +('weapon_ump45', 24, 250, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_varicamo_red_light.png', 'UMP-45 | Full Stop'), +('weapon_ump45', 24, 281, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_corporal_light.png', 'UMP-45 | Corporal'), +('weapon_ump45', 24, 333, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_so_indigo_and_grey_light.png', 'UMP-45 | Indigo'), +('weapon_ump45', 24, 362, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_lines_orange_light.png', 'UMP-45 | Labyrinth'), +('weapon_ump45', 24, 392, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_ump45_d-visions_light.png', 'UMP-45 | Delusion'), +('weapon_ump45', 24, 436, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_am_ump_racer_light.png', 'UMP-45 | Grand Prix'), +('weapon_ump45', 24, 441, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_labyrinth_light.png', 'UMP-45 | Minotaur\'s Labyrinth'), +('weapon_ump45', 24, 488, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_uproar_light.png', 'UMP-45 | Riot'), +('weapon_ump45', 24, 556, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_primalsaber_light.png', 'UMP-45 | Primal Saber'), +('weapon_ump45', 24, 615, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_metritera_light.png', 'UMP-45 | Briefing'), +('weapon_ump45', 24, 652, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_gs_ump_abyss_light.png', 'UMP-45 | Scaffold'), +('weapon_ump45', 24, 672, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aq_ump45_flameflower_light.png', 'UMP-45 | Metal Flowers'), +('weapon_ump45', 24, 688, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_x-ray_machine_light.png', 'UMP-45 | Exposure'), +('weapon_ump45', 24, 704, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_white_fang_light.png', 'UMP-45 | Arctic Wolf'), +('weapon_ump45', 24, 725, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_bloom_red_light.png', 'UMP-45 | Day Lily'), +('weapon_ump45', 24, 778, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_blueprint_bluered_light.png', 'UMP-45 | Facility Dark'), +('weapon_ump45', 24, 802, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_arrows_light.png', 'UMP-45 | Momentum'), +('weapon_ump45', 24, 851, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_ump45_moonrise_sunset_light.png', 'UMP-45 | Moonrise'), +('weapon_ump45', 24, 879, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_fade_ump_light.png', 'UMP-45 | Fade'), +('weapon_ump45', 24, 916, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_bomb_light.png', 'UMP-45 | Plastique'), +('weapon_ump45', 24, 990, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_gs_ump_gold_bismuth_light.png', 'UMP-45 | Gold Bismuth'), +('weapon_ump45', 24, 1003, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_crime_scene_light.png', 'UMP-45 | Crime Scene'), +('weapon_ump45', 24, 1008, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_houndstooth_brown_light.png', 'UMP-45 | Houndstooth'), +('weapon_ump45', 24, 1049, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_am_ump45_electrowave_light.png', 'UMP-45 | Oscillator'), +('weapon_ump45', 24, 1085, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_engine_performance_light.png', 'UMP-45 | Mechanism'), +('weapon_ump45', 24, 1157, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_gs_ump_roadblock_light.png', 'UMP-45 | Roadblock'), +('weapon_ump45', 24, 1236, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_clutch_kick_light.png', 'UMP-45 | Wild Child'), +('weapon_xm1014', 25, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_blued_light.png', 'XM1014 | Blue Steel'), +('weapon_xm1014', 25, 95, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_so_grassland_light.png', 'XM1014 | Grassland'), +('weapon_xm1014', 25, 96, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_so_moss_light.png', 'XM1014 | Blue Spruce'), +('weapon_xm1014', 25, 135, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_sp_tape_dots_urban_light.png', 'XM1014 | Urban Perforated'), +('weapon_xm1014', 25, 166, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_hunter_blaze_orange_light.png', 'XM1014 | Blaze Orange'), +('weapon_xm1014', 25, 169, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_sp_nukestripe_maroon_light.png', 'XM1014 | Fallout Warning'), +('weapon_xm1014', 25, 205, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_so_jungle_bravo_light.png', 'XM1014 | Jungle'), +('weapon_xm1014', 25, 238, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_varicamo_blue_light.png', 'XM1014 | VariCamo Blue'), +('weapon_xm1014', 25, 240, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_varicamo_desert_light.png', 'XM1014 | CaliCamo'), +('weapon_xm1014', 25, 314, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_heaven_guard_light.png', 'XM1014 | Heaven Guard'), +('weapon_xm1014', 25, 320, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_snakeskin_red_light.png', 'XM1014 | Red Python'), +('weapon_xm1014', 25, 348, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_leather_xm1014_light.png', 'XM1014 | Red Leather'), +('weapon_xm1014', 25, 370, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_nuclear_skulls1_xm1014_light.png', 'XM1014 | Bone Machine'), +('weapon_xm1014', 25, 393, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_caritas_light.png', 'XM1014 | Tranquility'), +('weapon_xm1014', 25, 407, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_sigla_light.png', 'XM1014 | Quicksilver'), +('weapon_xm1014', 25, 505, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_scumbria_light.png', 'XM1014 | Scumbria'), +('weapon_xm1014', 25, 521, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_hot_rod_light.png', 'XM1014 | Teclu Burner'), +('weapon_xm1014', 25, 557, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_spectrum_light.png', 'XM1014 | Black Tie'), +('weapon_xm1014', 25, 616, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_xm1014_fractal_blue_light.png', 'XM1014 | Slipstream'), +('weapon_xm1014', 25, 654, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm_leaf_fade_light.png', 'XM1014 | Seasons'), +('weapon_xm1014', 25, 689, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_ziggy_anarchy_light.png', 'XM1014 | Ziggy'), +('weapon_xm1014', 25, 706, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_oxide_blaze_light.png', 'XM1014 | Oxide Blaze'), +('weapon_xm1014', 25, 731, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_leaf_green_light.png', 'XM1014 | Banana Leaf'), +('weapon_xm1014', 25, 760, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_knots_silver_light.png', 'XM1014 | Frost Borre'), +('weapon_xm1014', 25, 821, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_moro_textile_bright_light.png', 'XM1014 | Elegant Vines'), +('weapon_xm1014', 25, 850, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_incinerator_light.png', 'XM1014 | Incinegator'), +('weapon_xm1014', 25, 970, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_amulet_blue_light.png', 'XM1014 | Entombed'), +('weapon_xm1014', 25, 994, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_authority_brown_light.png', 'XM1014 | Charter'), +('weapon_xm1014', 25, 1021, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_ancient_warm_light.png', 'XM1014 | Ancient Lore'), +('weapon_xm1014', 25, 1046, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_punk_light.png', 'XM1014 | XOXO'), +('weapon_xm1014', 25, 1078, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_sp_tire_tread_blue_light.png', 'XM1014 | Blue Tire'), +('weapon_xm1014', 25, 1103, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_gs_xm1014_watchdog_light.png', 'XM1014 | Watchdog'), +('weapon_xm1014', 25, 1135, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_xm_zombie_offensive_light.png', 'XM1014 | Zombie Offensive'), +('weapon_xm1014', 25, 1254, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_pharaoh_light.png', 'XM1014 | Hieroglyph'), +('weapon_bizon', 26, 3, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_so_red_light.png', 'PP-Bizon | Candy Apple'), +('weapon_bizon', 26, 13, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_splatter_light.png', 'PP-Bizon | Blue Streak'), +('weapon_bizon', 26, 25, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_leaves_light.png', 'PP-Bizon | Forest Leaves'), +('weapon_bizon', 26, 70, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_am_carbon_fiber_light.png', 'PP-Bizon | Carbon Fiber'), +('weapon_bizon', 26, 148, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_tape_short_sand_light.png', 'PP-Bizon | Sand Dashed'), +('weapon_bizon', 26, 149, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_tape_short_urban_light.png', 'PP-Bizon | Urban Dashed'), +('weapon_bizon', 26, 159, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_aq_brass_light.png', 'PP-Bizon | Brass'), +('weapon_bizon', 26, 164, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_hunter_modern_light.png', 'PP-Bizon | Modern Hunter'), +('weapon_bizon', 26, 171, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_nukestripe_brown_light.png', 'PP-Bizon | Irradiated Alert'), +('weapon_bizon', 26, 203, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_aq_steel_bravo_light.png', 'PP-Bizon | Rust Coat'), +('weapon_bizon', 26, 224, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_water_crest_light.png', 'PP-Bizon | Water Sigil'), +('weapon_bizon', 26, 236, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_varicamo_night_light.png', 'PP-Bizon | Night Ops'), +('weapon_bizon', 26, 267, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_am_turqoise_halftone_light.png', 'PP-Bizon | Cobalt Halftone'), +('weapon_bizon', 26, 293, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_nerodia_light.png', 'PP-Bizon | Death Rattle'), +('weapon_bizon', 26, 306, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_antique_light.png', 'PP-Bizon | Antique'), +('weapon_bizon', 26, 349, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon-osiris_light.png', 'PP-Bizon | Osiris'), +('weapon_bizon', 26, 376, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_so_grey_nuclear_green_bizon_light.png', 'PP-Bizon | Chemical Green'), +('weapon_bizon', 26, 457, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_bamboo_jungle_ink_light.png', 'PP-Bizon | Bamboo Print'), +('weapon_bizon', 26, 508, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_noxious_light.png', 'PP-Bizon | Fuel Rod'), +('weapon_bizon', 26, 526, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_citizen_light.png', 'PP-Bizon | Photic Zone'), +('weapon_bizon', 26, 542, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_curse_light.png', 'PP-Bizon | Judgement of Anubis'), +('weapon_bizon', 26, 594, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_gs_pp_bizon_harvester_light.png', 'PP-Bizon | Harvester'), +('weapon_bizon', 26, 641, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_bizon_torn_green_light.png', 'PP-Bizon | Jungle Slipstream'), +('weapon_bizon', 26, 676, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_all_in_light.png', 'PP-Bizon | High Roller'), +('weapon_bizon', 26, 692, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_riot_light.png', 'PP-Bizon | Night Riot'), +('weapon_bizon', 26, 775, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_blueprint_white_light.png', 'PP-Bizon | Facility Sketch'), +('weapon_bizon', 26, 829, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_lizard_skin_light.png', 'PP-Bizon | Anolis'), +('weapon_bizon', 26, 873, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_so_aqua_stmarc_light.png', 'PP-Bizon | Seabird'), +('weapon_bizon', 26, 884, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_road_warrior_light.png', 'PP-Bizon | Embargo'), +('weapon_bizon', 26, 973, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_gs_bizon_hellraider_light.png', 'PP-Bizon | Runic'), +('weapon_bizon', 26, 1083, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_aa_wiring_light.png', 'PP-Bizon | Breaker Box'), +('weapon_bizon', 26, 1099, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_gs_bizon_flasher_light.png', 'PP-Bizon | Lumen'), +('weapon_bizon', 26, 1125, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_spacecat_light.png', 'PP-Bizon | Space Cat'), +('weapon_mag7', 27, 32, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_an_silver_light.png', 'MAG-7 | Silver'), +('weapon_mag7', 27, 34, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_urban_light.png', 'MAG-7 | Metallic DDPAT'), +('weapon_mag7', 27, 39, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_yellow_light.png', 'MAG-7 | Bulldozer'), +('weapon_mag7', 27, 70, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_carbon_fiber_light.png', 'MAG-7 | Carbon Fiber'), +('weapon_mag7', 27, 99, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_sand_light.png', 'MAG-7 | Sand Dune'), +('weapon_mag7', 27, 100, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_stormfront_light.png', 'MAG-7 | Storm'), +('weapon_mag7', 27, 171, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_sp_nukestripe_brown_light.png', 'MAG-7 | Irradiated Alert'), +('weapon_mag7', 27, 177, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_icosahedron_light.png', 'MAG-7 | Memento'), +('weapon_mag7', 27, 198, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_sp_hazard_bravo_light.png', 'MAG-7 | Hazard'), +('weapon_mag7', 27, 291, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_heaven_light.png', 'MAG-7 | Heaven Guard'), +('weapon_mag7', 27, 327, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_chainmail_light.png', 'MAG-7 | Chainmail'), +('weapon_mag7', 27, 385, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_sp_mag7_firebitten_light.png', 'MAG-7 | Firestarter'), +('weapon_mag7', 27, 431, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_redhot_light.png', 'MAG-7 | Heat'), +('weapon_mag7', 27, 462, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_geometric_steps_green_light.png', 'MAG-7 | Counter Terrace'), +('weapon_mag7', 27, 473, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_aqua_light.png', 'MAG-7 | Seabird'), +('weapon_mag7', 27, 499, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_myrcene_light.png', 'MAG-7 | Cobalt Core'), +('weapon_mag7', 27, 535, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_praetorian_light.png', 'MAG-7 | Praetorian'), +('weapon_mag7', 27, 608, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_tribal_light.png', 'MAG-7 | Petroglyph'), +('weapon_mag7', 27, 633, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_mag7_malform_light.png', 'MAG-7 | Sonar'), +('weapon_mag7', 27, 666, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_mag7_caustic_light.png', 'MAG-7 | Hard Water'), +('weapon_mag7', 27, 703, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_aq_mag7_swag7_light.png', 'MAG-7 | SWAG-7'), +('weapon_mag7', 27, 737, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_glass_light.png', 'MAG-7 | Cinquedea'), +('weapon_mag7', 27, 754, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_aq_steel_inferno_light.png', 'MAG-7 | Rust Coat'), +('weapon_mag7', 27, 787, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_nuclear_hotorange_light.png', 'MAG-7 | Core Breach'), +('weapon_mag7', 27, 822, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_navy_shine_light.png', 'MAG-7 | Navy Sheen'), +('weapon_mag7', 27, 909, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_popdog_light.png', 'MAG-7 | Popdog'), +('weapon_mag7', 27, 948, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_justice_light.png', 'MAG-7 | Justice'), +('weapon_mag7', 27, 961, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_monster_call_light.png', 'MAG-7 | Monster Call'), +('weapon_mag7', 27, 1072, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_geometric_steps_pearl_light.png', 'MAG-7 | Prism Terrace'), +('weapon_mag7', 27, 1089, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_bismuth_light.png', 'MAG-7 | BI83 Spectrum'), +('weapon_mag7', 27, 1132, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_predictor_light.png', 'MAG-7 | Foresight'), +('weapon_mag7', 27, 1220, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_insomnia_light.png', 'MAG-7 | Insomnia'), +('weapon_mag7', 27, 1245, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_goold_light.png', 'MAG-7 | Copper Coated'), +('weapon_negev', 28, 28, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_an_navy_light.png', 'Negev | Anodized Navy'), +('weapon_negev', 28, 201, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_palm_bravo_light.png', 'Negev | Palm'), +('weapon_negev', 28, 240, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_varicamo_desert_light.png', 'Negev | CaliCamo'), +('weapon_negev', 28, 285, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_negev_turq_terrain_light.png', 'Negev | Terrain'), +('weapon_negev', 28, 298, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_am_army_shine_light.png', 'Negev | Army Sheen'), +('weapon_negev', 28, 317, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_bratatat_negev_light.png', 'Negev | Bratatat'), +('weapon_negev', 28, 355, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_titanstorm_light.png', 'Negev | Desert-Strike'), +('weapon_negev', 28, 369, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_nuclear_pattern3_negev_light.png', 'Negev | Nuclear Waste'), +('weapon_negev', 28, 432, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_am_negev_glory_light.png', 'Negev | Man-o\'-war'), +('weapon_negev', 28, 483, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_annihilator_light.png', 'Negev | Loudmouth'), +('weapon_negev', 28, 514, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_impact_light.png', 'Negev | Power Loader'), +('weapon_negev', 28, 610, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_negev_dazzle_light.png', 'Negev | Dazzle'), +('weapon_negev', 28, 698, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_negev_lionfish_light.png', 'Negev | Lionfish'), +('weapon_negev', 28, 763, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_gs_negev_thor_light.png', 'Negev | Mjölnir'), +('weapon_negev', 28, 783, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_ducts_yellow_light.png', 'Negev | Bulkhead'), +('weapon_negev', 28, 920, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_veneto_tan_light.png', 'Negev | Boroque Sand'), +('weapon_negev', 28, 950, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_prototype_light.png', 'Negev | Prototype'), +('weapon_negev', 28, 958, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_ultralight_light.png', 'Negev | Ultralight'), +('weapon_negev', 28, 1012, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_phoenix_tags_red_light.png', 'Negev | Phoenix Stencil'), +('weapon_negev', 28, 1043, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_devtexture_light.png', 'Negev | dev_texture'), +('weapon_negev', 28, 1080, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_vertigospray_light.png', 'Negev | Infrastructure'), +('weapon_negev', 28, 1152, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_clear_sky_light.png', 'Negev | Drop Me'), +('weapon_sawedoff', 29, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_ddpat_light.png', 'Sawed-Off | Forest DDPAT'), +('weapon_sawedoff', 29, 30, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_snake_light.png', 'Sawed-Off | Snake Camo'), +('weapon_sawedoff', 29, 41, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_copper_light.png', 'Sawed-Off | Copper'), +('weapon_sawedoff', 29, 83, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_ddpat_orange_light.png', 'Sawed-Off | Orange DDPAT'), +('weapon_sawedoff', 29, 119, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_spray_desert_sage_light.png', 'Sawed-Off | Sage Spray'), +('weapon_sawedoff', 29, 171, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_nukestripe_brown_light.png', 'Sawed-Off | Irradiated Alert'), +('weapon_sawedoff', 29, 204, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_ali_tile_bravo_light.png', 'Sawed-Off | Mosaico'), +('weapon_sawedoff', 29, 246, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aa_fade_metallic_light.png', 'Sawed-Off | Amber Fade'), +('weapon_sawedoff', 29, 250, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_varicamo_red_light.png', 'Sawed-Off | Full Stop'), +('weapon_sawedoff', 29, 256, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_octopump_light.png', 'Sawed-Off | The Kraken'), +('weapon_sawedoff', 29, 323, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_steel_light.png', 'Sawed-Off | Rust Coat'), +('weapon_sawedoff', 29, 345, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_green_leather_sawedoff_light.png', 'Sawed-Off | First Class'), +('weapon_sawedoff', 29, 390, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_sawedoff_blackgold_light.png', 'Sawed-Off | Highwayman'), +('weapon_sawedoff', 29, 405, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_deva_light.png', 'Sawed-Off | Serenity'), +('weapon_sawedoff', 29, 434, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_origami_light.png', 'Sawed-Off | Origami'), +('weapon_sawedoff', 29, 458, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_bamboo_jungle_black_light.png', 'Sawed-Off | Bamboo Shadow'), +('weapon_sawedoff', 29, 517, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_gs_sawedoff_necromancer_light.png', 'Sawed-Off | Yorick'), +('weapon_sawedoff', 29, 552, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_gs_sawedoff_fubar_light.png', 'Sawed-Off | Fubar'), +('weapon_sawedoff', 29, 596, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawed_off_lime_light.png', 'Sawed-Off | Limelight'), +('weapon_sawedoff', 29, 638, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_wp_sawedoff_light.png', 'Sawed-Off | Wasteland Princess'), +('weapon_sawedoff', 29, 655, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_sawedoff_zander2_light.png', 'Sawed-Off | Zander'), +('weapon_sawedoff', 29, 673, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_sawed-off_flower_light.png', 'Sawed-Off | Morris'), +('weapon_sawedoff', 29, 720, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_devourer_light.png', 'Sawed-Off | Devourer'), +('weapon_sawedoff', 29, 797, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aa_vertigo_red_light.png', 'Sawed-Off | Brake Light'), +('weapon_sawedoff', 29, 814, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_black_sand_light.png', 'Sawed-Off | Black Sand'), +('weapon_sawedoff', 29, 870, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_palm_green_light.png', 'Sawed-Off | Jungle Thicket'), +('weapon_sawedoff', 29, 880, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_desert_bloom_light.png', 'Sawed-Off | Parched'), +('weapon_sawedoff', 29, 953, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_apocalypto_light.png', 'Sawed-Off | Apocalypto'), +('weapon_sawedoff', 29, 1014, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_tigers_tan_light.png', 'Sawed-Off | Clay Ambush'), +('weapon_sawedoff', 29, 1140, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_ouija_light.png', 'Sawed-Off | Spirit Board'), +('weapon_sawedoff', 29, 1155, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_kisslove_light.png', 'Sawed-Off | Kiss♥Love'), +('weapon_tec9', 30, 2, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_so_olive_light.png', 'Tec-9 | Groundwater'), +('weapon_tec9', 30, 17, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_ddpat_urb_light.png', 'Tec-9 | Urban DDPAT'), +('weapon_tec9', 30, 36, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_ossify_light.png', 'Tec-9 | Ossified'), +('weapon_tec9', 30, 159, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_aq_brass_light.png', 'Tec-9 | Brass'), +('weapon_tec9', 30, 179, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_sp_nukestripe_green_tec9_light.png', 'Tec-9 | Nuclear Threat'), +('weapon_tec9', 30, 206, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_so_tornado_bravo_light.png', 'Tec-9 | Tornado'), +('weapon_tec9', 30, 216, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_an_titanium30v_light.png', 'Tec-9 | Blue Titanium'), +('weapon_tec9', 30, 235, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_varicamo_light.png', 'Tec-9 | VariCamo'), +('weapon_tec9', 30, 242, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_sp_mesh_army_light.png', 'Tec-9 | Army Mesh'), +('weapon_tec9', 30, 248, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_crystallized_light.png', 'Tec-9 | Red Quartz'), +('weapon_tec9', 30, 272, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_fluted_tec9_light.png', 'Tec-9 | Titanium Bit'), +('weapon_tec9', 30, 289, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_sandstorm_light.png', 'Tec-9 | Sandstorm'), +('weapon_tec9', 30, 303, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_asiimov_light.png', 'Tec-9 | Isaac'), +('weapon_tec9', 30, 374, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_nuclear_skulls5_tec9_light.png', 'Tec-9 | Toxic'), +('weapon_tec9', 30, 439, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_hades_light.png', 'Tec-9 | Hades'), +('weapon_tec9', 30, 459, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_bamboo_jungle_light.png', 'Tec-9 | Bamboo Forest'), +('weapon_tec9', 30, 463, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_geometric_steps_yellow_light.png', 'Tec-9 | Terrace'), +('weapon_tec9', 30, 520, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_avalanche_light.png', 'Tec-9 | Avalanche'), +('weapon_tec9', 30, 539, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_jambiya_light.png', 'Tec-9 | Jambiya'), +('weapon_tec9', 30, 555, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_tec9_redblast_light.png', 'Tec-9 | Re-Entry'), +('weapon_tec9', 30, 599, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_tec_9_sea_salt_light.png', 'Tec-9 | Ice Cap'), +('weapon_tec9', 30, 614, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_supercharged_light.png', 'Tec-9 | Fuel Injector'), +('weapon_tec9', 30, 671, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_aq_tec9_chalk_pattern_light.png', 'Tec-9 | Cut Out'), +('weapon_tec9', 30, 684, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_cracked_opal_light.png', 'Tec-9 | Cracked Opal'), +('weapon_tec9', 30, 722, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_snake_light.png', 'Tec-9 | Snek-9'), +('weapon_tec9', 30, 733, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_sp_leaf_orange_light.png', 'Tec-9 | Rust Leaf'), +('weapon_tec9', 30, 738, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_murano_orange_light.png', 'Tec-9 | Orange Murano'), +('weapon_tec9', 30, 791, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_envoy_light.png', 'Tec-9 | Remote Control'), +('weapon_tec9', 30, 795, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_mesh_safetyorange_light.png', 'Tec-9 | Safety Net'), +('weapon_tec9', 30, 816, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_fubar_light.png', 'Tec-9 | Fubar'), +('weapon_tec9', 30, 839, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_bamboo_light.png', 'Tec-9 | Bamboozle'), +('weapon_tec9', 30, 889, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_decimator_light.png', 'Tec-9 | Decimator'), +('weapon_tec9', 30, 905, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_flash_light.png', 'Tec-9 | Flash Out'), +('weapon_tec9', 30, 964, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_guerilla_light.png', 'Tec-9 | Brother'), +('weapon_tec9', 30, 1010, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_phoenix_tags_lilac_light.png', 'Tec-9 | Phoenix Chalk'), +('weapon_tec9', 30, 1024, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_ancient_tiles_peach_light.png', 'Tec-9 | Blast From the Past'), +('weapon_tec9', 30, 1235, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_freedom_light.png', 'Tec-9 | Rebel'), +('weapon_tec9', 30, 1252, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_mummy_light.png', 'Tec-9 | Mummy\'s Rot'), +('weapon_hkp2000', 32, 21, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_hy_granite_light.png', 'P2000 | Granite Marbleized'), +('weapon_hkp2000', 32, 32, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_an_silver_light.png', 'P2000 | Silver'), +('weapon_hkp2000', 32, 71, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_scorpion_p2000_light.png', 'P2000 | Scorpion'), +('weapon_hkp2000', 32, 95, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_so_grassland_light.png', 'P2000 | Grassland'), +('weapon_hkp2000', 32, 104, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_sp_leaves_grassland_light.png', 'P2000 | Grassland Leaves'), +('weapon_hkp2000', 32, 184, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_favela_p2000_light.png', 'P2000 | Corticera'), +('weapon_hkp2000', 32, 211, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_light.png', 'P2000 | Ocean Foam'), +('weapon_hkp2000', 32, 246, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aa_fade_metallic_light.png', 'P2000 | Amber Fade'), +('weapon_hkp2000', 32, 275, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_hy_poly_camo_light.png', 'P2000 | Red FragCam'), +('weapon_hkp2000', 32, 327, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_chainmail_light.png', 'P2000 | Chainmail'), +('weapon_hkp2000', 32, 338, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_pulse_light.png', 'P2000 | Pulse'), +('weapon_hkp2000', 32, 346, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_luggage_p2000_light.png', 'P2000 | Coach Class'), +('weapon_hkp2000', 32, 357, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_ivory_light.png', 'P2000 | Ivory'), +('weapon_hkp2000', 32, 389, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_light.png', 'P2000 | Fire Elemental'), +('weapon_hkp2000', 32, 443, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_sp_labyrinth2_light.png', 'P2000 | Pathfinder'), +('weapon_hkp2000', 32, 485, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aq_p2000_boom_light.png', 'P2000 | Handgun'), +('weapon_hkp2000', 32, 515, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_light.png', 'P2000 | Imperial'), +('weapon_hkp2000', 32, 550, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_hy_p2000_oceani_light.png', 'P2000 | Oceanic'), +('weapon_hkp2000', 32, 591, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_gs_p2000_imperial_dragon_light.png', 'P2000 | Imperial Dragon'), +('weapon_hkp2000', 32, 635, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_gs_p2000-sport_light.png', 'P2000 | Turf'), +('weapon_hkp2000', 32, 667, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_hunter_light.png', 'P2000 | Woodsman'), +('weapon_hkp2000', 32, 700, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_urban_hazard_light.png', 'P2000 | Urban Hazard'), +('weapon_hkp2000', 32, 894, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_obsidian_light.png', 'P2000 | Obsidian'), +('weapon_hkp2000', 32, 951, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aq_p2000_acid_clover_light.png', 'P2000 | Acid Etched'), +('weapon_hkp2000', 32, 960, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aq_p2000_lost_world_light.png', 'P2000 | Gnarled'), +('weapon_hkp2000', 32, 997, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_numbers_red_blue_light.png', 'P2000 | Dispatch'), +('weapon_hkp2000', 32, 1019, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_black_panther_light.png', 'P2000 | Panther Camo'), +('weapon_hkp2000', 32, 1055, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aa_spacerace_orange_light.png', 'P2000 | Space Race'), +('weapon_hkp2000', 32, 1138, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2k_flying_dream_light.png', 'P2000 | Lifted Spirits'), +('weapon_hkp2000', 32, 1224, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_decline_light.png', 'P2000 | Wicked Sick'), +('weapon_mp7', 33, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_ddpat_light.png', 'MP7 | Forest DDPAT'), +('weapon_mp7', 33, 11, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_skulls_light.png', 'MP7 | Skulls'), +('weapon_mp7', 33, 15, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_gelpen_light.png', 'MP7 | Gunsmoke'), +('weapon_mp7', 33, 28, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_an_navy_light.png', 'MP7 | Anodized Navy'), +('weapon_mp7', 33, 102, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_so_whiteout_light.png', 'MP7 | Whiteout'), +('weapon_mp7', 33, 141, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_tape_orange_light.png', 'MP7 | Orange Peel'), +('weapon_mp7', 33, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_dapple_light.png', 'MP7 | Scorched'), +('weapon_mp7', 33, 209, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_so_olive_bravo_light.png', 'MP7 | Groundwater'), +('weapon_mp7', 33, 213, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_am_ossify_blue_light.png', 'MP7 | Ocean Foam'), +('weapon_mp7', 33, 245, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_spray_army_light.png', 'MP7 | Army Recon'), +('weapon_mp7', 33, 250, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_varicamo_red_light.png', 'MP7 | Full Stop'), +('weapon_mp7', 33, 354, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7-commander_light.png', 'MP7 | Urban Hazard'), +('weapon_mp7', 33, 365, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_plaid1_light.png', 'MP7 | Olive Plaid'), +('weapon_mp7', 33, 423, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_aq_mp7_ultramodern_light.png', 'MP7 | Armor Core'), +('weapon_mp7', 33, 442, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_labyrinth_light.png', 'MP7 | Asterion'), +('weapon_mp7', 33, 481, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_nemsis_light.png', 'MP7 | Nemesis'), +('weapon_mp7', 33, 500, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_classified_light.png', 'MP7 | Special Delivery'), +('weapon_mp7', 33, 536, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_mp7_impire_light.png', 'MP7 | Impire'), +('weapon_mp7', 33, 627, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_final_pooldeadv2_light.png', 'MP7 | Cirrus'), +('weapon_mp7', 33, 649, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_mp7_tribal_yellow_light.png', 'MP7 | Akoben'), +('weapon_mp7', 33, 696, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_mp7_bloodsport_light.png', 'MP7 | Bloodsport'), +('weapon_mp7', 33, 719, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_powercore_mp7_light.png', 'MP7 | Powercore'), +('weapon_mp7', 33, 728, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_bud_green_light.png', 'MP7 | Teal Blossom'), +('weapon_mp7', 33, 752, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_aa_fade_mp7_light.png', 'MP7 | Fade'), +('weapon_mp7', 33, 782, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_am_circuitboard_green_light.png', 'MP7 | Motherboard'), +('weapon_mp7', 33, 847, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_racketeer_light.png', 'MP7 | Mischief'), +('weapon_mp7', 33, 893, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_replica_light.png', 'MP7 | Neon Ply'), +('weapon_mp7', 33, 935, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_zebracam_red_light.png', 'MP7 | Prey'), +('weapon_mp7', 33, 1007, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_am_heist_plans_yellow_light.png', 'MP7 | Vault Heist'), +('weapon_mp7', 33, 1023, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_drywood_green_light.png', 'MP7 | Tall Grass'), +('weapon_mp7', 33, 1096, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_khaki_light.png', 'MP7 | Guerrilla'), +('weapon_mp7', 33, 1133, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_fear_light.png', 'MP7 | Abyssal Apparition'), +('weapon_mp7', 33, 1246, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_mp7_strone_light.png', 'MP7 | Sunbaked'), +('weapon_mp9', 34, 33, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_an_red_light.png', 'MP9 | Hot Rod'), +('weapon_mp9', 34, 39, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_so_yellow_light.png', 'MP9 | Bulldozer'), +('weapon_mp9', 34, 61, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_vertigo_light.png', 'MP9 | Hypnotic'), +('weapon_mp9', 34, 100, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_so_stormfront_light.png', 'MP9 | Storm'), +('weapon_mp9', 34, 141, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_tape_orange_light.png', 'MP9 | Orange Peel'), +('weapon_mp9', 34, 148, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_tape_short_sand_light.png', 'MP9 | Sand Dashed'), +('weapon_mp9', 34, 199, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_tape_dots_bravo_light.png', 'MP9 | Dry Season'), +('weapon_mp9', 34, 262, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_thorny_rose_mp9_light.png', 'MP9 | Rose Iron'), +('weapon_mp9', 34, 298, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_army_shine_light.png', 'MP9 | Army Sheen'), +('weapon_mp9', 34, 329, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_metal_inlay_light.png', 'MP9 | Dark Age'), +('weapon_mp9', 34, 366, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_hy_plaid2_light.png', 'MP9 | Green Plaid'), +('weapon_mp9', 34, 368, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_hy_nuclear_pattern2_mp9_light.png', 'MP9 | Setting Sun'), +('weapon_mp9', 34, 386, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_chevron_light.png', 'MP9 | Dart'), +('weapon_mp9', 34, 403, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_deadly_poison_light.png', 'MP9 | Deadly Poison'), +('weapon_mp9', 34, 448, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_pandora_light.png', 'MP9 | Pandora\'s Box'), +('weapon_mp9', 34, 482, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_mp9_nitrogen_light.png', 'MP9 | Ruby Poison Dart'), +('weapon_mp9', 34, 549, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_mp9_bioleak_light.png', 'MP9 | Bioleak'), +('weapon_mp9', 34, 609, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_narcis_light.png', 'MP9 | Airlock'), +('weapon_mp9', 34, 630, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_hide-mp9_light.png', 'MP9 | Sand Scale'), +('weapon_mp9', 34, 679, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_goo_light.png', 'MP9 | Goo'), +('weapon_mp9', 34, 697, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_black_sand_light.png', 'MP9 | Black Sand'), +('weapon_mp9', 34, 715, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_vein_light.png', 'MP9 | Capillary'), +('weapon_mp9', 34, 734, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_island_floral_light.png', 'MP9 | Wild Lily'), +('weapon_mp9', 34, 755, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_hy_splatter3_light.png', 'MP9 | Slide'), +('weapon_mp9', 34, 804, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_gs_mp9_colony01_light.png', 'MP9 | Modest Threat'), +('weapon_mp9', 34, 820, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_mirage_flowers_metalic_light.png', 'MP9 | Music Box'), +('weapon_mp9', 34, 867, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_stained_glass_light.png', 'MP9 | Stained Glass'), +('weapon_mp9', 34, 910, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_hydra_light.png', 'MP9 | Hydra'), +('weapon_mp9', 34, 931, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_moro_carving_yellow_light.png', 'MP9 | Old Roots'), +('weapon_mp9', 34, 1037, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_food_chain_light.png', 'MP9 | Food Chain'), +('weapon_mp9', 34, 1094, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_mp9_fuji_pink_light.png', 'MP9 | Mount Fuji'), +('weapon_mp9', 34, 1134, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_gs_mp9_starlight_light.png', 'MP9 | Starlight Protector'), +('weapon_mp9', 34, 1225, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_superlight_light.png', 'MP9 | Featherweight'), +('weapon_nova', 35, 3, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_so_red_light.png', 'Nova | Candy Apple'), +('weapon_nova', 35, 25, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_leaves_light.png', 'Nova | Forest Leaves'), +('weapon_nova', 35, 62, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_spring_nova_light.png', 'Nova | Bloomstick'), +('weapon_nova', 35, 99, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_so_sand_light.png', 'Nova | Sand Dune'), +('weapon_nova', 35, 107, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_mesh_arctic_contrast_light.png', 'Nova | Polar Mesh'), +('weapon_nova', 35, 158, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_walnut_nova_light.png', 'Nova | Walnut'), +('weapon_nova', 35, 164, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_hunter_modern_light.png', 'Nova | Modern Hunter'), +('weapon_nova', 35, 166, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_hunter_blaze_orange_light.png', 'Nova | Blaze Orange'), +('weapon_nova', 35, 170, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_zebracam_light.png', 'Nova | Predator'), +('weapon_nova', 35, 191, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_seaside_bravo_light.png', 'Nova | Tempest'), +('weapon_nova', 35, 214, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_crumple_light.png', 'Nova | Graphite'), +('weapon_nova', 35, 225, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_camo_wood_blue_light.png', 'Nova | Ghost Camo'), +('weapon_nova', 35, 248, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_crystallized_light.png', 'Nova | Red Quartz'), +('weapon_nova', 35, 263, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_skull_nova_light.png', 'Nova | Rising Skull'), +('weapon_nova', 35, 286, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_antique_light.png', 'Nova | Antique'), +('weapon_nova', 35, 294, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_so_green_light.png', 'Nova | Green Apple'), +('weapon_nova', 35, 298, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_army_shine_light.png', 'Nova | Army Sheen'), +('weapon_nova', 35, 299, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_oval_hex_light.png', 'Nova | Caged Steel'), +('weapon_nova', 35, 323, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_aq_steel_light.png', 'Nova | Rust Coat'), +('weapon_nova', 35, 356, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_koi_light.png', 'Nova | Koi'), +('weapon_nova', 35, 450, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_zodiac1_light.png', 'Nova | Moon in Libra'), +('weapon_nova', 35, 484, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_ranger_light.png', 'Nova | Ranger'), +('weapon_nova', 35, 537, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_hyperbeast_light.png', 'Nova | Hyper Beast'), +('weapon_nova', 35, 590, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_aq_nova_sci_fi_light.png', 'Nova | Exo'), +('weapon_nova', 35, 634, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_nova_sand_light.png', 'Nova | Gila'), +('weapon_nova', 35, 699, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_gs_nova_anchorite_light.png', 'Nova | Wild Six'), +('weapon_nova', 35, 716, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_toy_soldier_light.png', 'Nova | Toy Soldier'), +('weapon_nova', 35, 746, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_veneto2_light.png', 'Nova | Baroque Orange'), +('weapon_nova', 35, 785, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_ducts_grey_light.png', 'Nova | Mandrel'), +('weapon_nova', 35, 809, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_gs_nova_hunter_brute_light.png', 'Nova | Wood Fired'), +('weapon_nova', 35, 890, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_featherswing_light.png', 'Nova | Plume'), +('weapon_nova', 35, 929, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_torn_camo_paints_light.png', 'Nova | Quick Sand'), +('weapon_nova', 35, 987, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_polymer_light.png', 'Nova | Clear Polymer'), +('weapon_nova', 35, 1051, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_nova_wind_dispersal_light.png', 'Nova | Windblown'), +('weapon_nova', 35, 1077, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_vertigoillusion_yellow_light.png', 'Nova | Interlock'), +('weapon_nova', 35, 1247, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_gs_nova_sobek_light.png', 'Nova | Sobek\'s Bite'), +('weapon_p250', 36, 15, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_gelpen_light.png', 'P250 | Gunsmoke'), +('weapon_p250', 36, 27, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_tape_light.png', 'P250 | Bone Mask'), +('weapon_p250', 36, 34, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_urban_light.png', 'P250 | Metallic DDPAT'), +('weapon_p250', 36, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_forest_boreal_light.png', 'P250 | Boreal Forest'), +('weapon_p250', 36, 78, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_forest_night_light.png', 'P250 | Forest Night'), +('weapon_p250', 36, 99, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_so_sand_light.png', 'P250 | Sand Dune'), +('weapon_p250', 36, 102, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_so_whiteout_light.png', 'P250 | Whiteout'), +('weapon_p250', 36, 125, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_xray_p250_light.png', 'P250 | X-Ray'), +('weapon_p250', 36, 162, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_splash_p250_light.png', 'P250 | Splash'), +('weapon_p250', 36, 164, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_hunter_modern_light.png', 'P250 | Modern Hunter'), +('weapon_p250', 36, 168, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_nukestripe_green_light.png', 'P250 | Nuclear Threat'), +('weapon_p250', 36, 207, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_crumple_dark_bravo_light.png', 'P250 | Facets'), +('weapon_p250', 36, 219, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_redhex_light.png', 'P250 | Hive'), +('weapon_p250', 36, 230, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_ddpatdense_silver_light.png', 'P250 | Steel Disruption'), +('weapon_p250', 36, 258, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_refined_light.png', 'P250 | Mehndi'), +('weapon_p250', 36, 271, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_p250_beaded_paint_light.png', 'P250 | Undertow'), +('weapon_p250', 36, 295, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_money_light.png', 'P250 | Franklin'), +('weapon_p250', 36, 358, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_bittersweet_light.png', 'P250 | Supernova'), +('weapon_p250', 36, 373, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_nuclear_skulls4_p250_light.png', 'P250 | Contamination'), +('weapon_p250', 36, 388, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aq_p250_cartel_light.png', 'P250 | Cartel'), +('weapon_p250', 36, 404, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_mandala_light.png', 'P250 | Muertos'), +('weapon_p250', 36, 426, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aq_p250_contour_light.png', 'P250 | Valence'), +('weapon_p250', 36, 466, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_kimono_diamonds_red_light.png', 'P250 | Crimson Kimono'), +('weapon_p250', 36, 467, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_kimono_diamonds_light.png', 'P250 | Mint Kimono'), +('weapon_p250', 36, 501, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_p250_crackshot_light.png', 'P250 | Wingshot'), +('weapon_p250', 36, 551, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_asiimov_light.png', 'P250 | Asiimov'), +('weapon_p250', 36, 592, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_metal_panels_light.png', 'P250 | Iron Clad'), +('weapon_p250', 36, 650, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_p250_sputnik_light.png', 'P250 | Ripple'), +('weapon_p250', 36, 668, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_axiom_light.png', 'P250 | Red Rock'), +('weapon_p250', 36, 678, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_cybercroc_light.png', 'P250 | See Ya Later'), +('weapon_p250', 36, 741, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_ren_dark_light.png', 'P250 | Dark Filigree'), +('weapon_p250', 36, 749, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_checker_light.png', 'P250 | Vino Primo'), +('weapon_p250', 36, 777, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_blueprint_red_light.png', 'P250 | Facility Draft'), +('weapon_p250', 36, 786, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_ducts_blue_light.png', 'P250 | Exchanger'), +('weapon_p250', 36, 813, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aa_p250_gravediggers_light.png', 'P250 | Nevermore'), +('weapon_p250', 36, 825, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_desert_skulls_dawn_light.png', 'P250 | Drought'), +('weapon_p250', 36, 848, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aq_p250_verdigris_light.png', 'P250 | Verdigris'), +('weapon_p250', 36, 907, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_inferno_light.png', 'P250 | Inferno'), +('weapon_p250', 36, 928, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_desert_multicam_light.png', 'P250 | Black & Tan'), +('weapon_p250', 36, 968, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_cassette_light.png', 'P250 | Cassette'), +('weapon_p250', 36, 982, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_infect_light.png', 'P250 | Contaminant'), +('weapon_p250', 36, 1030, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_p250_tiger_light.png', 'P250 | Bengal Tiger'), +('weapon_p250', 36, 1044, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_cybershell_light.png', 'P250 | Cyber Shell'), +('weapon_p250', 36, 1081, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aa_vertigogeo_neon_light.png', 'P250 | Digital Architect'), +('weapon_p250', 36, 1153, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_visions_light.png', 'P250 | Visions'), +('weapon_p250', 36, 1230, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_rebuilt_light.png', 'P250 | Re.built'), +('weapon_p250', 36, 1248, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_apep_light.png', 'P250 | Apep\'s Curse'), +('weapon_scar20', 38, 46, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_so_pmc_light.png', 'SCAR-20 | Contractor'), +('weapon_scar20', 38, 70, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_am_carbon_fiber_light.png', 'SCAR-20 | Carbon Fiber'), +('weapon_scar20', 38, 100, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_so_stormfront_light.png', 'SCAR-20 | Storm'), +('weapon_scar20', 38, 116, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_mesh_sand_light.png', 'SCAR-20 | Sand Mesh'), +('weapon_scar20', 38, 157, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_palm_light.png', 'SCAR-20 | Palm'), +('weapon_scar20', 38, 159, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_aq_brass_light.png', 'SCAR-20 | Brass'), +('weapon_scar20', 38, 165, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_hunter_blaze_pink_light.png', 'SCAR-20 | Splash Jam'), +('weapon_scar20', 38, 196, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_an_emerald_bravo_light.png', 'SCAR-20 | Emerald'), +('weapon_scar20', 38, 232, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_webs_darker_light.png', 'SCAR-20 | Crimson Web'), +('weapon_scar20', 38, 298, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_am_army_shine_light.png', 'SCAR-20 | Army Sheen'), +('weapon_scar20', 38, 312, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_scar_cyrex_light.png', 'SCAR-20 | Cyrex'), +('weapon_scar20', 38, 391, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_scar20_intervention_light.png', 'SCAR-20 | Cardiac'), +('weapon_scar20', 38, 406, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_aq_scar20_leak_light.png', 'SCAR-20 | Grotto'), +('weapon_scar20', 38, 502, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_peacemaker03_light.png', 'SCAR-20 | Green Marine'), +('weapon_scar20', 38, 518, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_scar20_jungler_light.png', 'SCAR-20 | Outbreak'), +('weapon_scar20', 38, 597, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_bloodsport_light.png', 'SCAR-20 | Bloodsport'), +('weapon_scar20', 38, 612, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_powercore_light.png', 'SCAR-20 | Powercore'), +('weapon_scar20', 38, 642, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_blueprint_scar_light.png', 'SCAR-20 | Blueprint'), +('weapon_scar20', 38, 685, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_scar20_jungle_slipstream_light.png', 'SCAR-20 | Jungle Slipstream'), +('weapon_scar20', 38, 865, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_canals_tile_light.png', 'SCAR-20 | Stone Mosaico'), +('weapon_scar20', 38, 896, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_scar20_striker_dust_light.png', 'SCAR-20 | Torn'), +('weapon_scar20', 38, 914, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_scar_assault_light.png', 'SCAR-20 | Assault'), +('weapon_scar20', 38, 954, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_enforcer_light.png', 'SCAR-20 | Enforcer'), +('weapon_scar20', 38, 1028, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_authority_purple_light.png', 'SCAR-20 | Magna Carta'), +('weapon_scar20', 38, 1139, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_scar_chickenfight_light.png', 'SCAR-20 | Poultrygeist'), +('weapon_scar20', 38, 1226, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar_fragments_black_light.png', 'SCAR-20 | Fragments'), +('weapon_sg556', 39, 28, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_an_navy_light.png', 'SG 553 | Anodized Navy'), +('weapon_sg556', 39, 39, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_yellow_light.png', 'SG 553 | Bulldozer'), +('weapon_sg556', 39, 61, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aa_vertigo_light.png', 'SG 553 | Hypnotic'), +('weapon_sg556', 39, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_purple_light.png', 'SG 553 | Ultraviolet'), +('weapon_sg556', 39, 101, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_tornado_light.png', 'SG 553 | Tornado'), +('weapon_sg556', 39, 136, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_tape_dots_waves_light.png', 'SG 553 | Waves Perforated'), +('weapon_sg556', 39, 186, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_spray_waves_bravo_light.png', 'SG 553 | Wave Spray'), +('weapon_sg556', 39, 243, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_mesh_python_light.png', 'SG 553 | Gator Mesh'), +('weapon_sg556', 39, 247, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aq_damascus_sg553_light.png', 'SG 553 | Damascus Steel'), +('weapon_sg556', 39, 287, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_pulse_light.png', 'SG 553 | Pulse'), +('weapon_sg556', 39, 298, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_am_army_shine_light.png', 'SG 553 | Army Sheen'), +('weapon_sg556', 39, 363, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_luggage_sg553_light.png', 'SG 553 | Traveler'), +('weapon_sg556', 39, 378, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_nukestripe_maroon_sg553_light.png', 'SG 553 | Fallout Warning'), +('weapon_sg556', 39, 487, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_cyrex_light.png', 'SG 553 | Cyrex'), +('weapon_sg556', 39, 519, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_tiger_moth_light.png', 'SG 553 | Tiger Moth'), +('weapon_sg556', 39, 553, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_atlas_light.png', 'SG 553 | Atlas'), +('weapon_sg556', 39, 598, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_aerial_light.png', 'SG 553 | Aerial'), +('weapon_sg556', 39, 613, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg556_triarch_light.png', 'SG 553 | Triarch'), +('weapon_sg556', 39, 686, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_phantom_light.png', 'SG 553 | Phantom'), +('weapon_sg556', 39, 702, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_sg533_aloha_light.png', 'SG 553 | Aloha'), +('weapon_sg556', 39, 750, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_rally_light.png', 'SG 553 | Integrale'), +('weapon_sg556', 39, 765, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aa_desert_bloom_bright_light.png', 'SG 553 | Desert Blossom'), +('weapon_sg556', 39, 815, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_over_heated_light.png', 'SG 553 | Danger Close'), +('weapon_sg556', 39, 861, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_asgard_wall_light.png', 'SG 553 | Barricade'), +('weapon_sg556', 39, 864, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_red_sg553_light.png', 'SG 553 | Candy Apple'), +('weapon_sg556', 39, 897, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_reactor_light.png', 'SG 553 | Colony IV'), +('weapon_sg556', 39, 934, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_desert_skulls_light.png', 'SG 553 | Bleached'), +('weapon_sg556', 39, 955, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_darkwing_light.png', 'SG 553 | Darkwing'), +('weapon_sg556', 39, 966, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_rusty_light.png', 'SG 553 | Ol\' Rusty'), +('weapon_sg556', 39, 1022, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aa_ruins_green_light.png', 'SG 553 | Lush Ruins'), +('weapon_sg556', 39, 1048, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_deathmetal_light.png', 'SG 553 | Heavy Metal'), +('weapon_sg556', 39, 1084, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_caution_light.png', 'SG 553 | Hazard Pay'), +('weapon_sg556', 39, 1151, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_cyber_dragon_light.png', 'SG 553 | Dragon Tech'), +('weapon_sg556', 39, 1234, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_cyberforce_light.png', 'SG 553 | Cyberforce'), +('weapon_ssg08', 40, 26, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_short_tape_light.png', 'SSG 08 | Lichen Dashed'), +('weapon_ssg08', 40, 60, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_am_zebra_dark_light.png', 'SSG 08 | Dark Water'), +('weapon_ssg08', 40, 70, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_am_carbon_fiber_light.png', 'SSG 08 | Carbon Fiber'), +('weapon_ssg08', 40, 96, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_so_moss_light.png', 'SSG 08 | Blue Spruce'), +('weapon_ssg08', 40, 99, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_so_sand_light.png', 'SSG 08 | Sand Dune'), +('weapon_ssg08', 40, 147, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_tape_short_jungle_light.png', 'SSG 08 | Jungle Dashed'), +('weapon_ssg08', 40, 200, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_mayan_dreams_bravo_light.png', 'SSG 08 | Mayan Dreams'), +('weapon_ssg08', 40, 222, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_shark_light.png', 'SSG 08 | Blood in the Water'), +('weapon_ssg08', 40, 233, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_palm_shadow_light.png', 'SSG 08 | Tropical Storm'), +('weapon_ssg08', 40, 253, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_aa_fade_grassland_light.png', 'SSG 08 | Acid Fade'), +('weapon_ssg08', 40, 304, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_immortal_light.png', 'SSG 08 | Slashed'), +('weapon_ssg08', 40, 319, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_ssg08_marker_light.png', 'SSG 08 | Detour'), +('weapon_ssg08', 40, 361, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_aq_leviathan_light.png', 'SSG 08 | Abyss'), +('weapon_ssg08', 40, 503, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_technicality_light.png', 'SSG 08 | Big Iron'), +('weapon_ssg08', 40, 538, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_necropos_light.png', 'SSG 08 | Necropos'), +('weapon_ssg08', 40, 554, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_gs_ssg08_armacore_light.png', 'SSG 08 | Ghost Crusader'), +('weapon_ssg08', 40, 624, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_dragonfire_scope_light.png', 'SSG 08 | Dragonfire'), +('weapon_ssg08', 40, 670, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_deathshead_light.png', 'SSG 08 | Death\'s Head'), +('weapon_ssg08', 40, 743, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_ren_orange_light.png', 'SSG 08 | Orange Filigree'), +('weapon_ssg08', 40, 751, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_gs_ssg08_checker_light.png', 'SSG 08 | Hand Brake'), +('weapon_ssg08', 40, 762, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_so_rune_stone_light.png', 'SSG 08 | Red Stone'), +('weapon_ssg08', 40, 868, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_flowers_stmarc_light.png', 'SSG 08 | Sea Calico'), +('weapon_ssg08', 40, 899, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_tickler_light.png', 'SSG 08 | Bloodshot'), +('weapon_ssg08', 40, 935, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_zebracam_red_light.png', 'SSG 08 | Prey'), +('weapon_ssg08', 40, 956, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_fever_dream_light.png', 'SSG 08 | Fever Dream'), +('weapon_ssg08', 40, 967, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_mainframe_light.png', 'SSG 08 | Mainframe 001'), +('weapon_ssg08', 40, 989, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_chromatic_light.png', 'SSG 08 | Parallax'), +('weapon_ssg08', 40, 996, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_am_intelligence_orange_light.png', 'SSG 08 | Threat Detected'), +('weapon_ssg08', 40, 1052, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_scorpion_light.png', 'SSG 08 | Death Strike'), +('weapon_ssg08', 40, 1060, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_trainarchitect_green_light.png', 'SSG 08 | Spring Twilly'), +('weapon_ssg08', 40, 1101, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg_overtake_light.png', 'SSG 08 | Turbo Peek'), +('weapon_ssg08', 40, 1251, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_gs_ssg08_anubis_light.png', 'SSG 08 | Azure Glyph'), +('weapon_m4a1_silencer', 60, 60, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_light.png', 'M4A1-S | Dark Water'), +('weapon_m4a1_silencer', 60, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_light.png', 'M4A1-S | Boreal Forest'), +('weapon_m4a1_silencer', 60, 189, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_light.png', 'M4A1-S | Bright Water'), +('weapon_m4a1_silencer', 60, 217, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_redtiger_light.png', 'M4A1-S | Blood Tiger'), +('weapon_m4a1_silencer', 60, 235, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_varicamo_light.png', 'M4A1-S | VariCamo'), +('weapon_m4a1_silencer', 60, 254, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_so_orange_accents_light.png', 'M4A1-S | Nitro'), +('weapon_m4a1_silencer', 60, 257, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_light.png', 'M4A1-S | Guardian'), +('weapon_m4a1_silencer', 60, 301, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_light.png', 'M4A1-S | Atomic Alloy'), +('weapon_m4a1_silencer', 60, 321, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_light.png', 'M4A1-S | Master Piece'), +('weapon_m4a1_silencer', 60, 326, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_metals_light.png', 'M4A1-S | Knight'), +('weapon_m4a1_silencer', 60, 360, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_light.png', 'M4A1-S | Cyrex'), +('weapon_m4a1_silencer', 60, 383, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_light.png', 'M4A1-S | Basilisk'), +('weapon_m4a1_silencer', 60, 430, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_light.png', 'M4A1-S | Hyper Beast'), +('weapon_m4a1_silencer', 60, 440, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_icarus_light.png', 'M4A1-S | Icarus Fell'), +('weapon_m4a1_silencer', 60, 445, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_light.png', 'M4A1-S | Hot Rod'), +('weapon_m4a1_silencer', 60, 497, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_light.png', 'M4A1-S | Golden Coil'), +('weapon_m4a1_silencer', 60, 548, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_soultaker_light.png', 'M4A1-S | Chantico\'s Fire'), +('weapon_m4a1_silencer', 60, 587, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_mecha_industries_light.png', 'M4A1-S | Mecha Industries'), +('weapon_m4a1_silencer', 60, 631, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1_flashback_light.png', 'M4A1-S | Flashback'), +('weapon_m4a1_silencer', 60, 644, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_decimator_light.png', 'M4A1-S | Decimator'), +('weapon_m4a1_silencer', 60, 663, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_metritera_light.png', 'M4A1-S | Briefing'), +('weapon_m4a1_silencer', 60, 681, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_shatter_light.png', 'M4A1-S | Leaded Glass'), +('weapon_m4a1_silencer', 60, 714, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_nightmare_light.png', 'M4A1-S | Nightmare'), +('weapon_m4a1_silencer', 60, 792, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_operator_light.png', 'M4A1-S | Control Panel'), +('weapon_m4a1_silencer', 60, 862, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_crystallized_dark_green_light.png', 'M4A1-S | Moss Quartz'), +('weapon_m4a1_silencer', 60, 946, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_csgo2048_light.png', 'M4A1-S | Player Two'), +('weapon_m4a1_silencer', 60, 984, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_printstream_light.png', 'M4A1-S | Printstream'), +('weapon_m4a1_silencer', 60, 1001, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1_snake_light.png', 'M4A1-S | Welcome to the Jungle'), +('weapon_m4a1_silencer', 60, 1017, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_m4a1s_bluesmoke_light.png', 'M4A1-S | Blue Phosphor'), +('weapon_m4a1_silencer', 60, 1059, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_sp_technowar_red_light.png', 'M4A1-S | Fizzy POP'), +('weapon_m4a1_silencer', 60, 1073, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_vertigo_light.png', 'M4A1-S | Imminent Danger'), +('weapon_m4a1_silencer', 60, 1130, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_insomnia_light.png', 'M4A1-S | Night Terror'), +('weapon_m4a1_silencer', 60, 1223, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_feeding_frenzy_light.png', 'M4A1-S | Emphorosaur-S'), +('weapon_m4a1_silencer', 60, 1243, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_milspec_light.png', 'M4A1-S | Mud-Spec'), +('weapon_usp_silencer', 61, 25, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_leaves_light.png', 'USP-S | Forest Leaves'), +('weapon_usp_silencer', 61, 60, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_zebra_dark_light.png', 'USP-S | Dark Water'), +('weapon_usp_silencer', 61, 183, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_siege_bravo_light.png', 'USP-S | Overgrowth'), +('weapon_usp_silencer', 61, 217, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_redtiger_light.png', 'USP-S | Blood Tiger'), +('weapon_usp_silencer', 61, 221, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_electric_red_light.png', 'USP-S | Serum'), +('weapon_usp_silencer', 61, 236, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_varicamo_night_light.png', 'USP-S | Night Ops'), +('weapon_usp_silencer', 61, 277, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_aq_usp_stainless_light.png', 'USP-S | Stainless'), +('weapon_usp_silencer', 61, 290, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_elegant_light.png', 'USP-S | Guardian'), +('weapon_usp_silencer', 61, 313, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_spitfire_light.png', 'USP-S | Orion'), +('weapon_usp_silencer', 61, 318, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_sandpapered_light.png', 'USP-S | Road Rash'), +('weapon_usp_silencer', 61, 332, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_indigo_usp_light.png', 'USP-S | Royal Blue'), +('weapon_usp_silencer', 61, 339, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_kaiman_light.png', 'USP-S | Caiman'), +('weapon_usp_silencer', 61, 364, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_luggage_usp-s_light.png', 'USP-S | Business Class'), +('weapon_usp_silencer', 61, 443, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_labyrinth2_light.png', 'USP-S | Pathfinder'), +('weapon_usp_silencer', 61, 454, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_so_khaki_green_light.png', 'USP-S | Para Green'), +('weapon_usp_silencer', 61, 489, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_progressiv_light.png', 'USP-S | Torque'), +('weapon_usp_silencer', 61, 504, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_kill_confirmed_light.png', 'USP-S | Kill Confirmed'), +('weapon_usp_silencer', 61, 540, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_gs_usp_voltage_light.png', 'USP-S | Lead Conduit'), +('weapon_usp_silencer', 61, 637, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_cyrex_light.png', 'USP-S | Cyrex'), +('weapon_usp_silencer', 61, 653, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usps_noir_light.png', 'USP-S | Neo-Noir'), +('weapon_usp_silencer', 61, 657, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usps_blueprint_light.png', 'USP-S | Blueprint'), +('weapon_usp_silencer', 61, 705, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_cut_light.png', 'USP-S | Cortex'), +('weapon_usp_silencer', 61, 796, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_mesh_safetyred_light.png', 'USP-S | Check Engine'), +('weapon_usp_silencer', 61, 817, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_flashback_light.png', 'USP-S | Flashback'), +('weapon_usp_silencer', 61, 818, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_ddpat_purple_light.png', 'USP-S | Purple DDPAT'), +('weapon_usp_silencer', 61, 922, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_lizard_red_light.png', 'USP-S | Orange Anolis'), +('weapon_usp_silencer', 61, 991, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_krokos_light.png', 'USP-S | Monster Mashup'), +('weapon_usp_silencer', 61, 1027, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_intelligence_magenta_light.png', 'USP-S | Target Acquired'), +('weapon_usp_silencer', 61, 1031, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_ancient_bright_light.png', 'USP-S | Ancient Visions'), +('weapon_usp_silencer', 61, 1040, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_gs_usps_hangedman_light.png', 'USP-S | The Traitor'), +('weapon_usp_silencer', 61, 1065, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_so_whiteout_riptide_light.png', 'USP-S | Whiteout'), +('weapon_usp_silencer', 61, 1102, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_black_lotus_light.png', 'USP-S | Black Lotus'), +('weapon_usp_silencer', 61, 1136, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_to_hell_light.png', 'USP-S | Ticket to Hell'), +('weapon_usp_silencer', 61, 1142, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_printstream_light.png', 'USP-S | Printstream'), +('weapon_usp_silencer', 61, 1253, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_gs_usps_tactical_camo_light.png', 'USP-S | Desert Tactical'), +('weapon_cz75a', 63, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_webs_light.png', 'CZ75-Auto | Crimson Web'), +('weapon_cz75a', 63, 32, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_an_silver_light.png', 'CZ75-Auto | Silver'), +('weapon_cz75a', 63, 147, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_sp_tape_short_jungle_light.png', 'CZ75-Auto | Jungle Dashed'), +('weapon_cz75a', 63, 218, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_bluehex_light.png', 'CZ75-Auto | Hexane'), +('weapon_cz75a', 63, 268, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_diamond_plate_light.png', 'CZ75-Auto | Tread Plate'), +('weapon_cz75a', 63, 269, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_fuschia_light.png', 'CZ75-Auto | The Fuschia Is Now'), +('weapon_cz75a', 63, 270, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_aq_etched_cz75_light.png', 'CZ75-Auto | Victoria'), +('weapon_cz75a', 63, 297, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_so_orca_light.png', 'CZ75-Auto | Tuxedo'), +('weapon_cz75a', 63, 298, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_army_shine_light.png', 'CZ75-Auto | Army Sheen'), +('weapon_cz75a', 63, 315, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_nitrogen_light.png', 'CZ75-Auto | Poison Dart'), +('weapon_cz75a', 63, 322, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_so_orange_accents2_light.png', 'CZ75-Auto | Nitro'), +('weapon_cz75a', 63, 325, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_royal_light.png', 'CZ75-Auto | Chalice'), +('weapon_cz75a', 63, 333, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_so_indigo_and_grey_light.png', 'CZ75-Auto | Indigo'), +('weapon_cz75a', 63, 334, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_gyrate_light.png', 'CZ75-Auto | Twist'), +('weapon_cz75a', 63, 350, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_c75a-tiger_light.png', 'CZ75-Auto | Tigris'), +('weapon_cz75a', 63, 366, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_plaid2_light.png', 'CZ75-Auto | Green Plaid'), +('weapon_cz75a', 63, 435, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_precision_light.png', 'CZ75-Auto | Pole Position'), +('weapon_cz75a', 63, 453, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_an_emerald_light.png', 'CZ75-Auto | Emerald'), +('weapon_cz75a', 63, 476, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75a_chastizer_light.png', 'CZ75-Auto | Yellow Jacket'), +('weapon_cz75a', 63, 543, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75a_redastor_light.png', 'CZ75-Auto | Red Astor'), +('weapon_cz75a', 63, 602, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75_tread_light.png', 'CZ75-Auto | Imprint'), +('weapon_cz75a', 63, 622, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_czv2_mf_light.png', 'CZ75-Auto | Polymer'), +('weapon_cz75a', 63, 643, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz_snakes_purple_light.png', 'CZ75-Auto | Xiangliu'), +('weapon_cz75a', 63, 687, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75_tacticat_light.png', 'CZ75-Auto | Tacticat'), +('weapon_cz75a', 63, 709, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_eco_light.png', 'CZ75-Auto | Eco'), +('weapon_cz75a', 63, 859, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_crystallized_green_light.png', 'CZ75-Auto | Emerald Quartz'), +('weapon_cz75a', 63, 933, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_sp_palm_night_light.png', 'CZ75-Auto | Midnight Palm'), +('weapon_cz75a', 63, 944, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_cerakote_light.png', 'CZ75-Auto | Distressed'), +('weapon_cz75a', 63, 976, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75_vendetta_light.png', 'CZ75-Auto | Vendetta'), +('weapon_cz75a', 63, 1036, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_whirlwind_light.png', 'CZ75-Auto | Circaetus'), +('weapon_cz75a', 63, 1064, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_train_cz75_light.png', 'CZ75-Auto | Syndicate'), +('weapon_cz75a', 63, 1076, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_vertigoillusion_light.png', 'CZ75-Auto | Framework'), +('weapon_revolver', 64, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_hy_webs_light.png', 'R8 Revolver | Crimson Web'), +('weapon_revolver', 64, 27, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_sp_tape_light.png', 'R8 Revolver | Bone Mask'), +('weapon_revolver', 64, 37, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_aa_flames_light.png', 'R8 Revolver | Blaze'), +('weapon_revolver', 64, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_so_night_light.png', 'R8 Revolver | Night'), +('weapon_revolver', 64, 522, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_aa_fade_revolver_light.png', 'R8 Revolver | Fade'), +('weapon_revolver', 64, 523, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_light.png', 'R8 Revolver | Amber Fade'), +('weapon_revolver', 64, 595, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_cu_r8_cybersport_light.png', 'R8 Revolver | Reboot'), +('weapon_revolver', 64, 683, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_llamacannon_light.png', 'R8 Revolver | Llama Cannon'), +('weapon_revolver', 64, 701, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_revolver_tread_light.png', 'R8 Revolver | Grip'), +('weapon_revolver', 64, 721, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_cu_r8_survivalist_light.png', 'R8 Revolver | Survivalist'), +('weapon_revolver', 64, 798, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_so_orange_accents3_light.png', 'R8 Revolver | Nitro'), +('weapon_revolver', 64, 843, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_cu_revolver_oppressor_light.png', 'R8 Revolver | Skull Crusher'), +('weapon_revolver', 64, 866, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_sp_spray_water_light.png', 'R8 Revolver | Canal Spray'), +('weapon_revolver', 64, 892, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_memento_light.png', 'R8 Revolver | Memento'), +('weapon_revolver', 64, 924, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_hy_brush_camo_tan_light.png', 'R8 Revolver | Desert Brush'), +('weapon_revolver', 64, 952, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_leviathan_light.png', 'R8 Revolver | Bone Forged'), +('weapon_revolver', 64, 1011, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_am_phoenix_tags_blue_light.png', 'R8 Revolver | Phoenix Marker'), +('weapon_revolver', 64, 1047, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_rustking_light.png', 'R8 Revolver | Junk Yard'), +('weapon_revolver', 64, 1145, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_revolver_purple_elite_light.png', 'R8 Revolver | Crazy 8'), +('weapon_revolver', 64, 1232, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_banana_light.png', 'R8 Revolver | Banana Cannon'), +('weapon_revolver', 64, 1237, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_revolver_acanthus_bronze_light.png', 'R8 Revolver | Inlay'), +('weapon_bayonet', 500, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_ddpat_light.png', '★ Bayonet | Forest DDPAT'), +('weapon_bayonet', 500, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_webs_light.png', '★ Bayonet | Crimson Web'), +('weapon_bayonet', 500, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aa_fade_light.png', '★ Bayonet | Fade'), +('weapon_bayonet', 500, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_so_night_light.png', '★ Bayonet | Night'), +('weapon_bayonet', 500, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_blued_light.png', '★ Bayonet | Blue Steel'), +('weapon_bayonet', 500, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_forced_light.png', '★ Bayonet | Stained'), +('weapon_bayonet', 500, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_oiled_light.png', '★ Bayonet | Case Hardened'), +('weapon_bayonet', 500, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_zebra_light.png', '★ Bayonet | Slaughter'), +('weapon_bayonet', 500, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_sp_mesh_tan_light.png', '★ Bayonet | Safari Mesh'), +('weapon_bayonet', 500, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_forest_boreal_light.png', '★ Bayonet | Boreal Forest'), +('weapon_bayonet', 500, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_so_purple_light.png', '★ Bayonet | Ultraviolet'), +('weapon_bayonet', 500, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_sp_tape_urban_light.png', '★ Bayonet | Urban Masked'), +('weapon_bayonet', 500, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_sp_dapple_light.png', '★ Bayonet | Scorched'), +('weapon_bayonet', 500, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_an_tiger_orange_light.png', '★ Bayonet | Tiger Tooth'), +('weapon_bayonet', 500, 410, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_damascus_light.png', '★ Bayonet | Damascus Steel'), +('weapon_bayonet', 500, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_marble_fade_light.png', '★ Bayonet | Marble Fade'), +('weapon_bayonet', 500, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_steel_knife_light.png', '★ Bayonet | Rust Coat'), +('weapon_bayonet', 500, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_ruby_marbleized_light.png', '★ Bayonet | Doppler'), +('weapon_bayonet', 500, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_sapphire_marbleized_light.png', '★ Bayonet | Doppler'), +('weapon_bayonet', 500, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_blackpearl_marbleized_light.png', '★ Bayonet | Doppler'), +('weapon_bayonet', 500, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase1_light.png', '★ Bayonet | Doppler'), +('weapon_bayonet', 500, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase2_light.png', '★ Bayonet | Doppler'), +('weapon_bayonet', 500, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase3_light.png', '★ Bayonet | Doppler'), +('weapon_bayonet', 500, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase4_light.png', '★ Bayonet | Doppler'), +('weapon_bayonet', 500, 558, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_cu_bayonet_lore_light.png', '★ Bayonet | Lore'), +('weapon_bayonet', 500, 563, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_cu_bayonet_stonewash_light.png', '★ Bayonet | Black Laminate'), +('weapon_bayonet', 500, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_emerald_marbleized_light.png', '★ Bayonet | Gamma Doppler'), +('weapon_bayonet', 500, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase1_light.png', '★ Bayonet | Gamma Doppler'), +('weapon_bayonet', 500, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase2_light.png', '★ Bayonet | Gamma Doppler'), +('weapon_bayonet', 500, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase3_light.png', '★ Bayonet | Gamma Doppler'), +('weapon_bayonet', 500, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase4_light.png', '★ Bayonet | Gamma Doppler'), +('weapon_bayonet', 500, 573, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_gs_bayonet_autotronic_light.png', '★ Bayonet | Autotronic'), +('weapon_bayonet', 500, 578, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_ocean_knife_light.png', '★ Bayonet | Bright Water'), +('weapon_bayonet', 500, 580, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_marked_up_light.png', '★ Bayonet | Freehand'), +('weapon_knife_css', 503, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_hy_ddpat_light.png', '★ Classic Knife | Forest DDPAT'), +('weapon_knife_css', 503, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_hy_webs_light.png', '★ Classic Knife | Crimson Web'), +('weapon_knife_css', 503, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aa_fade_light.png', '★ Classic Knife | Fade'), +('weapon_knife_css', 503, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aq_blued_light.png', '★ Classic Knife | Blue Steel'), +('weapon_knife_css', 503, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aq_forced_light.png', '★ Classic Knife | Stained'), +('weapon_knife_css', 503, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aq_oiled_light.png', '★ Classic Knife | Case Hardened'), +('weapon_knife_css', 503, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_am_zebra_light.png', '★ Classic Knife | Slaughter'), +('weapon_knife_css', 503, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_mesh_tan_light.png', '★ Classic Knife | Safari Mesh'), +('weapon_knife_css', 503, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_hy_forest_boreal_light.png', '★ Classic Knife | Boreal Forest'), +('weapon_knife_css', 503, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_tape_urban_light.png', '★ Classic Knife | Urban Masked'), +('weapon_knife_css', 503, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_dapple_light.png', '★ Classic Knife | Scorched'), +('weapon_knife_css', 503, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_nightstripe_light.png', '★ Classic Knife | Night Stripe'), +('weapon_knife_flip', 505, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_ddpat_light.png', '★ Flip Knife | Forest DDPAT'), +('weapon_knife_flip', 505, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_webs_light.png', '★ Flip Knife | Crimson Web'), +('weapon_knife_flip', 505, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aa_fade_light.png', '★ Flip Knife | Fade'), +('weapon_knife_flip', 505, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_so_night_light.png', '★ Flip Knife | Night'), +('weapon_knife_flip', 505, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_blued_light.png', '★ Flip Knife | Blue Steel'), +('weapon_knife_flip', 505, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_forced_light.png', '★ Flip Knife | Stained'), +('weapon_knife_flip', 505, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_oiled_light.png', '★ Flip Knife | Case Hardened'), +('weapon_knife_flip', 505, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_zebra_light.png', '★ Flip Knife | Slaughter'), +('weapon_knife_flip', 505, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_sp_mesh_tan_light.png', '★ Flip Knife | Safari Mesh'), +('weapon_knife_flip', 505, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_forest_boreal_light.png', '★ Flip Knife | Boreal Forest'), +('weapon_knife_flip', 505, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_so_purple_light.png', '★ Flip Knife | Ultraviolet'), +('weapon_knife_flip', 505, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_sp_tape_urban_light.png', '★ Flip Knife | Urban Masked'), +('weapon_knife_flip', 505, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_sp_dapple_light.png', '★ Flip Knife | Scorched'), +('weapon_knife_flip', 505, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_an_tiger_orange_light.png', '★ Flip Knife | Tiger Tooth'), +('weapon_knife_flip', 505, 410, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_damascus_light.png', '★ Flip Knife | Damascus Steel'), +('weapon_knife_flip', 505, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_marble_fade_light.png', '★ Flip Knife | Marble Fade'), +('weapon_knife_flip', 505, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_steel_knife_light.png', '★ Flip Knife | Rust Coat'), +('weapon_knife_flip', 505, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_ruby_marbleized_light.png', '★ Flip Knife | Doppler'), +('weapon_knife_flip', 505, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_sapphire_marbleized_light.png', '★ Flip Knife | Doppler'), +('weapon_knife_flip', 505, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_blackpearl_marbleized_light.png', '★ Flip Knife | Doppler'), +('weapon_knife_flip', 505, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase1_light.png', '★ Flip Knife | Doppler'), +('weapon_knife_flip', 505, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase2_light.png', '★ Flip Knife | Doppler'), +('weapon_knife_flip', 505, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase3_light.png', '★ Flip Knife | Doppler'), +('weapon_knife_flip', 505, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase4_light.png', '★ Flip Knife | Doppler'), +('weapon_knife_flip', 505, 559, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_cu_flip_lore_light.png', '★ Flip Knife | Lore'), +('weapon_knife_flip', 505, 564, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_cu_flip_stonewash_light.png', '★ Flip Knife | Black Laminate'), +('weapon_knife_flip', 505, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_emerald_marbleized_light.png', '★ Flip Knife | Gamma Doppler'), +('weapon_knife_flip', 505, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase1_light.png', '★ Flip Knife | Gamma Doppler'), +('weapon_knife_flip', 505, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase2_light.png', '★ Flip Knife | Gamma Doppler'), +('weapon_knife_flip', 505, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase3_light.png', '★ Flip Knife | Gamma Doppler'), +('weapon_knife_flip', 505, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase4_light.png', '★ Flip Knife | Gamma Doppler'), +('weapon_knife_flip', 505, 574, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_gs_flip_autotronic_light.png', '★ Flip Knife | Autotronic'), +('weapon_knife_flip', 505, 578, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_ocean_knife_light.png', '★ Flip Knife | Bright Water'), +('weapon_knife_flip', 505, 580, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_marked_up_light.png', '★ Flip Knife | Freehand'), +('weapon_knife_gut', 506, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_ddpat_light.png', '★ Gut Knife | Forest DDPAT'), +('weapon_knife_gut', 506, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_webs_light.png', '★ Gut Knife | Crimson Web'), +('weapon_knife_gut', 506, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aa_fade_light.png', '★ Gut Knife | Fade'), +('weapon_knife_gut', 506, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_so_night_light.png', '★ Gut Knife | Night'), +('weapon_knife_gut', 506, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_blued_light.png', '★ Gut Knife | Blue Steel'), +('weapon_knife_gut', 506, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_forced_light.png', '★ Gut Knife | Stained'), +('weapon_knife_gut', 506, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_oiled_light.png', '★ Gut Knife | Case Hardened'), +('weapon_knife_gut', 506, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_zebra_light.png', '★ Gut Knife | Slaughter'), +('weapon_knife_gut', 506, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_sp_mesh_tan_light.png', '★ Gut Knife | Safari Mesh'), +('weapon_knife_gut', 506, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_forest_boreal_light.png', '★ Gut Knife | Boreal Forest'), +('weapon_knife_gut', 506, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_so_purple_light.png', '★ Gut Knife | Ultraviolet'), +('weapon_knife_gut', 506, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_sp_tape_urban_light.png', '★ Gut Knife | Urban Masked'), +('weapon_knife_gut', 506, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_sp_dapple_light.png', '★ Gut Knife | Scorched'), +('weapon_knife_gut', 506, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_an_tiger_orange_light.png', '★ Gut Knife | Tiger Tooth'), +('weapon_knife_gut', 506, 410, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_damascus_light.png', '★ Gut Knife | Damascus Steel'), +('weapon_knife_gut', 506, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_marble_fade_light.png', '★ Gut Knife | Marble Fade'), +('weapon_knife_gut', 506, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_steel_knife_light.png', '★ Gut Knife | Rust Coat'), +('weapon_knife_gut', 506, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_ruby_marbleized_light.png', '★ Gut Knife | Doppler'), +('weapon_knife_gut', 506, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_sapphire_marbleized_light.png', '★ Gut Knife | Doppler'), +('weapon_knife_gut', 506, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_blackpearl_marbleized_light.png', '★ Gut Knife | Doppler'), +('weapon_knife_gut', 506, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase1_light.png', '★ Gut Knife | Doppler'), +('weapon_knife_gut', 506, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase2_light.png', '★ Gut Knife | Doppler'), +('weapon_knife_gut', 506, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase3_light.png', '★ Gut Knife | Doppler'), +('weapon_knife_gut', 506, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase4_light.png', '★ Gut Knife | Doppler'), +('weapon_knife_gut', 506, 560, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_cu_gut_lore_light.png', '★ Gut Knife | Lore'), +('weapon_knife_gut', 506, 565, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_cu_gut_stonewash_light.png', '★ Gut Knife | Black Laminate'), +('weapon_knife_gut', 506, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_emerald_marbleized_light.png', '★ Gut Knife | Gamma Doppler'), +('weapon_knife_gut', 506, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase1_light.png', '★ Gut Knife | Gamma Doppler'), +('weapon_knife_gut', 506, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase2_light.png', '★ Gut Knife | Gamma Doppler'), +('weapon_knife_gut', 506, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase3_light.png', '★ Gut Knife | Gamma Doppler'), +('weapon_knife_gut', 506, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase4_light.png', '★ Gut Knife | Gamma Doppler'), +('weapon_knife_gut', 506, 575, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_gs_gut_autotronic_light.png', '★ Gut Knife | Autotronic'), +('weapon_knife_gut', 506, 578, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_ocean_knife_light.png', '★ Gut Knife | Bright Water'), +('weapon_knife_gut', 506, 580, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_marked_up_light.png', '★ Gut Knife | Freehand'), +('weapon_knife_karambit', 507, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_ddpat_light.png', '★ Karambit | Forest DDPAT'), +('weapon_knife_karambit', 507, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_webs_light.png', '★ Karambit | Crimson Web'), +('weapon_knife_karambit', 507, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aa_fade_light.png', '★ Karambit | Fade'), +('weapon_knife_karambit', 507, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_so_night_light.png', '★ Karambit | Night'), +('weapon_knife_karambit', 507, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_blued_light.png', '★ Karambit | Blue Steel'), +('weapon_knife_karambit', 507, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_forced_light.png', '★ Karambit | Stained'), +('weapon_knife_karambit', 507, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_oiled_light.png', '★ Karambit | Case Hardened'), +('weapon_knife_karambit', 507, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_zebra_light.png', '★ Karambit | Slaughter'), +('weapon_knife_karambit', 507, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_sp_mesh_tan_light.png', '★ Karambit | Safari Mesh'), +('weapon_knife_karambit', 507, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_forest_boreal_light.png', '★ Karambit | Boreal Forest'), +('weapon_knife_karambit', 507, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_so_purple_light.png', '★ Karambit | Ultraviolet'), +('weapon_knife_karambit', 507, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_sp_tape_urban_light.png', '★ Karambit | Urban Masked'), +('weapon_knife_karambit', 507, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_sp_dapple_light.png', '★ Karambit | Scorched'), +('weapon_knife_karambit', 507, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_an_tiger_orange_light.png', '★ Karambit | Tiger Tooth'), +('weapon_knife_karambit', 507, 410, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_damascus_light.png', '★ Karambit | Damascus Steel'), +('weapon_knife_karambit', 507, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_marble_fade_light.png', '★ Karambit | Marble Fade'), +('weapon_knife_karambit', 507, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_steel_knife_light.png', '★ Karambit | Rust Coat'), +('weapon_knife_karambit', 507, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_ruby_marbleized_light.png', '★ Karambit | Doppler'), +('weapon_knife_karambit', 507, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_sapphire_marbleized_light.png', '★ Karambit | Doppler'), +('weapon_knife_karambit', 507, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_blackpearl_marbleized_light.png', '★ Karambit | Doppler'), +('weapon_knife_karambit', 507, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase1_light.png', '★ Karambit | Doppler'), +('weapon_knife_karambit', 507, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase2_light.png', '★ Karambit | Doppler'), +('weapon_knife_karambit', 507, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase3_light.png', '★ Karambit | Doppler'), +('weapon_knife_karambit', 507, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase4_light.png', '★ Karambit | Doppler'), +('weapon_knife_karambit', 507, 561, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_cu_karam_lore_light.png', '★ Karambit | Lore'), +('weapon_knife_karambit', 507, 566, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_cu_karam_stonewash_light.png', '★ Karambit | Black Laminate'), +('weapon_knife_karambit', 507, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_emerald_marbleized_light.png', '★ Karambit | Gamma Doppler'), +('weapon_knife_karambit', 507, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase1_light.png', '★ Karambit | Gamma Doppler'), +('weapon_knife_karambit', 507, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase2_light.png', '★ Karambit | Gamma Doppler'), +('weapon_knife_karambit', 507, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase3_light.png', '★ Karambit | Gamma Doppler'), +('weapon_knife_karambit', 507, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase4_light.png', '★ Karambit | Gamma Doppler'), +('weapon_knife_karambit', 507, 576, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_gs_karam_autotronic_light.png', '★ Karambit | Autotronic'), +('weapon_knife_karambit', 507, 578, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_ocean_knife_light.png', '★ Karambit | Bright Water'), +('weapon_knife_karambit', 507, 582, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_marked_up_fine_light.png', '★ Karambit | Freehand'), +('weapon_knife_m9_bayonet', 508, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_ddpat_light.png', '★ M9 Bayonet | Forest DDPAT'), +('weapon_knife_m9_bayonet', 508, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_webs_light.png', '★ M9 Bayonet | Crimson Web'), +('weapon_knife_m9_bayonet', 508, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aa_fade_light.png', '★ M9 Bayonet | Fade'), +('weapon_knife_m9_bayonet', 508, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_so_night_light.png', '★ M9 Bayonet | Night'), +('weapon_knife_m9_bayonet', 508, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_blued_light.png', '★ M9 Bayonet | Blue Steel'), +('weapon_knife_m9_bayonet', 508, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_forced_light.png', '★ M9 Bayonet | Stained'), +('weapon_knife_m9_bayonet', 508, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_oiled_light.png', '★ M9 Bayonet | Case Hardened'), +('weapon_knife_m9_bayonet', 508, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_zebra_light.png', '★ M9 Bayonet | Slaughter'), +('weapon_knife_m9_bayonet', 508, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_sp_mesh_tan_light.png', '★ M9 Bayonet | Safari Mesh'), +('weapon_knife_m9_bayonet', 508, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_forest_boreal_light.png', '★ M9 Bayonet | Boreal Forest'), +('weapon_knife_m9_bayonet', 508, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_so_purple_light.png', '★ M9 Bayonet | Ultraviolet'), +('weapon_knife_m9_bayonet', 508, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_sp_tape_urban_light.png', '★ M9 Bayonet | Urban Masked'), +('weapon_knife_m9_bayonet', 508, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_sp_dapple_light.png', '★ M9 Bayonet | Scorched'), +('weapon_knife_m9_bayonet', 508, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_an_tiger_orange_light.png', '★ M9 Bayonet | Tiger Tooth'), +('weapon_knife_m9_bayonet', 508, 411, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_damascus_90_light.png', '★ M9 Bayonet | Damascus Steel'), +('weapon_knife_m9_bayonet', 508, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_marble_fade_light.png', '★ M9 Bayonet | Marble Fade'), +('weapon_knife_m9_bayonet', 508, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_steel_knife_light.png', '★ M9 Bayonet | Rust Coat'), +('weapon_knife_m9_bayonet', 508, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_ruby_marbleized_light.png', '★ M9 Bayonet | Doppler'), +('weapon_knife_m9_bayonet', 508, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_sapphire_marbleized_light.png', '★ M9 Bayonet | Doppler'), +('weapon_knife_m9_bayonet', 508, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_blackpearl_marbleized_light.png', '★ M9 Bayonet | Doppler'), +('weapon_knife_m9_bayonet', 508, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase1_light.png', '★ M9 Bayonet | Doppler'), +('weapon_knife_m9_bayonet', 508, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase2_light.png', '★ M9 Bayonet | Doppler'), +('weapon_knife_m9_bayonet', 508, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase3_light.png', '★ M9 Bayonet | Doppler'), +('weapon_knife_m9_bayonet', 508, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase4_light.png', '★ M9 Bayonet | Doppler'), +('weapon_knife_m9_bayonet', 508, 562, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_lore_light.png', '★ M9 Bayonet | Lore'), +('weapon_knife_m9_bayonet', 508, 567, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_stonewash_light.png', '★ M9 Bayonet | Black Laminate'), +('weapon_knife_m9_bayonet', 508, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_emerald_marbleized_light.png', '★ M9 Bayonet | Gamma Doppler'), +('weapon_knife_m9_bayonet', 508, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase1_light.png', '★ M9 Bayonet | Gamma Doppler'), +('weapon_knife_m9_bayonet', 508, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase2_light.png', '★ M9 Bayonet | Gamma Doppler'), +('weapon_knife_m9_bayonet', 508, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase3_light.png', '★ M9 Bayonet | Gamma Doppler'), +('weapon_knife_m9_bayonet', 508, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase4_light.png', '★ M9 Bayonet | Gamma Doppler'), +('weapon_knife_m9_bayonet', 508, 577, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_gs_m9_bay_autotronic_light.png', '★ M9 Bayonet | Autotronic'), +('weapon_knife_m9_bayonet', 508, 579, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_ocean_knife_90_light.png', '★ M9 Bayonet | Bright Water'), +('weapon_knife_m9_bayonet', 508, 581, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_marked_up_90_light.png', '★ M9 Bayonet | Freehand'), +('weapon_knife_tactical', 509, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_ddpat_light.png', '★ Huntsman Knife | Forest DDPAT'), +('weapon_knife_tactical', 509, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_webs_light.png', '★ Huntsman Knife | Crimson Web'), +('weapon_knife_tactical', 509, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aa_fade_light.png', '★ Huntsman Knife | Fade'), +('weapon_knife_tactical', 509, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_so_night_light.png', '★ Huntsman Knife | Night'), +('weapon_knife_tactical', 509, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_blued_light.png', '★ Huntsman Knife | Blue Steel'), +('weapon_knife_tactical', 509, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_forced_light.png', '★ Huntsman Knife | Stained'), +('weapon_knife_tactical', 509, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_oiled_light.png', '★ Huntsman Knife | Case Hardened'), +('weapon_knife_tactical', 509, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_zebra_light.png', '★ Huntsman Knife | Slaughter'), +('weapon_knife_tactical', 509, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_sp_mesh_tan_light.png', '★ Huntsman Knife | Safari Mesh'), +('weapon_knife_tactical', 509, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_forest_boreal_light.png', '★ Huntsman Knife | Boreal Forest'), +('weapon_knife_tactical', 509, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_sp_tape_urban_light.png', '★ Huntsman Knife | Urban Masked'), +('weapon_knife_tactical', 509, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_sp_dapple_light.png', '★ Huntsman Knife | Scorched'), +('weapon_knife_tactical', 509, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_an_tiger_orange_light.png', '★ Huntsman Knife | Tiger Tooth'), +('weapon_knife_tactical', 509, 411, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_damascus_90_light.png', '★ Huntsman Knife | Damascus Steel'), +('weapon_knife_tactical', 509, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_marble_fade_light.png', '★ Huntsman Knife | Marble Fade'), +('weapon_knife_tactical', 509, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_steel_knife_light.png', '★ Huntsman Knife | Rust Coat'), +('weapon_knife_tactical', 509, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_ruby_marbleized_light.png', '★ Huntsman Knife | Doppler'), +('weapon_knife_tactical', 509, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_sapphire_marbleized_light.png', '★ Huntsman Knife | Doppler'), +('weapon_knife_tactical', 509, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_blackpearl_marbleized_light.png', '★ Huntsman Knife | Doppler'), +('weapon_knife_tactical', 509, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase1_light.png', '★ Huntsman Knife | Doppler'), +('weapon_knife_tactical', 509, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase2_light.png', '★ Huntsman Knife | Doppler'), +('weapon_knife_tactical', 509, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase3_light.png', '★ Huntsman Knife | Doppler'), +('weapon_knife_tactical', 509, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase4_light.png', '★ Huntsman Knife | Doppler'), +('weapon_knife_tactical', 509, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_emerald_marbleized_light.png', '★ Huntsman Knife | Gamma Doppler'), +('weapon_knife_tactical', 509, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase1_light.png', '★ Huntsman Knife | Gamma Doppler'), +('weapon_knife_tactical', 509, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase2_light.png', '★ Huntsman Knife | Gamma Doppler'), +('weapon_knife_tactical', 509, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase3_light.png', '★ Huntsman Knife | Gamma Doppler'), +('weapon_knife_tactical', 509, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase4_light.png', '★ Huntsman Knife | Gamma Doppler'), +('weapon_knife_tactical', 509, 579, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_ocean_knife_90_light.png', '★ Huntsman Knife | Bright Water'), +('weapon_knife_tactical', 509, 581, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_marked_up_90_light.png', '★ Huntsman Knife | Freehand'), +('weapon_knife_tactical', 509, 620, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_cu_purple_huntsman_light.png', '★ Huntsman Knife | Ultraviolet'), +('weapon_knife_tactical', 509, 1107, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_cu_huntsman_lore_light.png', '★ Huntsman Knife | Lore'), +('weapon_knife_tactical', 509, 1112, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_gs_huntsman_black_laminate_light.png', '★ Huntsman Knife | Black Laminate'), +('weapon_knife_tactical', 509, 1117, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_gs_huntsman_autotronic_light.png', '★ Huntsman Knife | Autotronic'), +('weapon_knife_falchion', 512, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_ddpat_light.png', '★ Falchion Knife | Forest DDPAT'), +('weapon_knife_falchion', 512, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_webs_light.png', '★ Falchion Knife | Crimson Web'), +('weapon_knife_falchion', 512, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aa_fade_light.png', '★ Falchion Knife | Fade'), +('weapon_knife_falchion', 512, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_so_night_light.png', '★ Falchion Knife | Night'), +('weapon_knife_falchion', 512, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_blued_light.png', '★ Falchion Knife | Blue Steel'), +('weapon_knife_falchion', 512, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_forced_light.png', '★ Falchion Knife | Stained'), +('weapon_knife_falchion', 512, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_oiled_light.png', '★ Falchion Knife | Case Hardened'), +('weapon_knife_falchion', 512, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_zebra_light.png', '★ Falchion Knife | Slaughter'), +('weapon_knife_falchion', 512, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_sp_mesh_tan_light.png', '★ Falchion Knife | Safari Mesh'), +('weapon_knife_falchion', 512, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_forest_boreal_light.png', '★ Falchion Knife | Boreal Forest'), +('weapon_knife_falchion', 512, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_sp_tape_urban_light.png', '★ Falchion Knife | Urban Masked'), +('weapon_knife_falchion', 512, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_sp_dapple_light.png', '★ Falchion Knife | Scorched'), +('weapon_knife_falchion', 512, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_an_tiger_orange_light.png', '★ Falchion Knife | Tiger Tooth'), +('weapon_knife_falchion', 512, 411, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_damascus_90_light.png', '★ Falchion Knife | Damascus Steel'), +('weapon_knife_falchion', 512, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_marble_fade_light.png', '★ Falchion Knife | Marble Fade'), +('weapon_knife_falchion', 512, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_steel_knife_light.png', '★ Falchion Knife | Rust Coat'), +('weapon_knife_falchion', 512, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_ruby_marbleized_light.png', '★ Falchion Knife | Doppler'), +('weapon_knife_falchion', 512, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_sapphire_marbleized_light.png', '★ Falchion Knife | Doppler'), +('weapon_knife_falchion', 512, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_blackpearl_marbleized_light.png', '★ Falchion Knife | Doppler'), +('weapon_knife_falchion', 512, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase1_light.png', '★ Falchion Knife | Doppler'), +('weapon_knife_falchion', 512, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase2_light.png', '★ Falchion Knife | Doppler'), +('weapon_knife_falchion', 512, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase3_light.png', '★ Falchion Knife | Doppler'), +('weapon_knife_falchion', 512, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase4_light.png', '★ Falchion Knife | Doppler'), +('weapon_knife_falchion', 512, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_emerald_marbleized_light.png', '★ Falchion Knife | Gamma Doppler'), +('weapon_knife_falchion', 512, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase1_light.png', '★ Falchion Knife | Gamma Doppler'), +('weapon_knife_falchion', 512, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase2_light.png', '★ Falchion Knife | Gamma Doppler'), +('weapon_knife_falchion', 512, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase3_light.png', '★ Falchion Knife | Gamma Doppler'), +('weapon_knife_falchion', 512, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase4_light.png', '★ Falchion Knife | Gamma Doppler'), +('weapon_knife_falchion', 512, 579, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_ocean_knife_90_light.png', '★ Falchion Knife | Bright Water'), +('weapon_knife_falchion', 512, 581, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_marked_up_90_light.png', '★ Falchion Knife | Freehand'), +('weapon_knife_falchion', 512, 621, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_so_purple_falchion_light.png', '★ Falchion Knife | Ultraviolet'), +('weapon_knife_falchion', 512, 1106, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_cu_falchion_lore_light.png', '★ Falchion Knife | Lore'), +('weapon_knife_falchion', 512, 1111, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_gs_falchion_black_laminate_light.png', '★ Falchion Knife | Black Laminate'), +('weapon_knife_falchion', 512, 1116, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_gs_falchion_autotronic_light.png', '★ Falchion Knife | Autotronic'), +('weapon_knife_survival_bowie', 514, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_light.png', '★ Bowie Knife | Forest DDPAT'), +('weapon_knife_survival_bowie', 514, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_webs_light.png', '★ Bowie Knife | Crimson Web'), +('weapon_knife_survival_bowie', 514, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aa_fade_light.png', '★ Bowie Knife | Fade'), +('weapon_knife_survival_bowie', 514, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_so_night_light.png', '★ Bowie Knife | Night'), +('weapon_knife_survival_bowie', 514, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_blued_light.png', '★ Bowie Knife | Blue Steel'), +('weapon_knife_survival_bowie', 514, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_forced_light.png', '★ Bowie Knife | Stained'), +('weapon_knife_survival_bowie', 514, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_oiled_light.png', '★ Bowie Knife | Case Hardened'), +('weapon_knife_survival_bowie', 514, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_zebra_light.png', '★ Bowie Knife | Slaughter'), +('weapon_knife_survival_bowie', 514, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_light.png', '★ Bowie Knife | Safari Mesh'), +('weapon_knife_survival_bowie', 514, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_light.png', '★ Bowie Knife | Boreal Forest'), +('weapon_knife_survival_bowie', 514, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_so_purple_light.png', '★ Bowie Knife | Ultraviolet'), +('weapon_knife_survival_bowie', 514, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_light.png', '★ Bowie Knife | Urban Masked'), +('weapon_knife_survival_bowie', 514, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_sp_dapple_light.png', '★ Bowie Knife | Scorched'), +('weapon_knife_survival_bowie', 514, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_an_tiger_orange_light.png', '★ Bowie Knife | Tiger Tooth'), +('weapon_knife_survival_bowie', 514, 411, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_damascus_90_light.png', '★ Bowie Knife | Damascus Steel'), +('weapon_knife_survival_bowie', 514, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_marble_fade_light.png', '★ Bowie Knife | Marble Fade'), +('weapon_knife_survival_bowie', 514, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_steel_knife_light.png', '★ Bowie Knife | Rust Coat'), +('weapon_knife_survival_bowie', 514, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_ruby_marbleized_light.png', '★ Bowie Knife | Doppler'), +('weapon_knife_survival_bowie', 514, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_sapphire_marbleized_light.png', '★ Bowie Knife | Doppler'), +('weapon_knife_survival_bowie', 514, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_blackpearl_marbleized_light.png', '★ Bowie Knife | Doppler'), +('weapon_knife_survival_bowie', 514, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase1_light.png', '★ Bowie Knife | Doppler'), +('weapon_knife_survival_bowie', 514, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase2_light.png', '★ Bowie Knife | Doppler'), +('weapon_knife_survival_bowie', 514, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase3_light.png', '★ Bowie Knife | Doppler'), +('weapon_knife_survival_bowie', 514, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase4_light.png', '★ Bowie Knife | Doppler'), +('weapon_knife_survival_bowie', 514, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_emerald_marbleized_light.png', '★ Bowie Knife | Gamma Doppler'), +('weapon_knife_survival_bowie', 514, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase1_light.png', '★ Bowie Knife | Gamma Doppler'), +('weapon_knife_survival_bowie', 514, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase2_light.png', '★ Bowie Knife | Gamma Doppler'), +('weapon_knife_survival_bowie', 514, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase3_light.png', '★ Bowie Knife | Gamma Doppler'), +('weapon_knife_survival_bowie', 514, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase4_light.png', '★ Bowie Knife | Gamma Doppler'), +('weapon_knife_survival_bowie', 514, 579, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_ocean_knife_90_light.png', '★ Bowie Knife | Bright Water'), +('weapon_knife_survival_bowie', 514, 581, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_marked_up_90_light.png', '★ Bowie Knife | Freehand'), +('weapon_knife_survival_bowie', 514, 1104, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_cu_bowie_lore_light.png', '★ Bowie Knife | Lore'), +('weapon_knife_survival_bowie', 514, 1109, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_gs_bowie_black_laminate_light.png', '★ Bowie Knife | Black Laminate'), +('weapon_knife_survival_bowie', 514, 1114, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_gs_bowie_autotronic_light.png', '★ Bowie Knife | Autotronic'), +('weapon_knife_butterfly', 515, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_ddpat_light.png', '★ Butterfly Knife | Forest DDPAT'), +('weapon_knife_butterfly', 515, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_webs_light.png', '★ Butterfly Knife | Crimson Web'), +('weapon_knife_butterfly', 515, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aa_fade_light.png', '★ Butterfly Knife | Fade'), +('weapon_knife_butterfly', 515, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_so_night_light.png', '★ Butterfly Knife | Night'), +('weapon_knife_butterfly', 515, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_blued_light.png', '★ Butterfly Knife | Blue Steel'), +('weapon_knife_butterfly', 515, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_forced_light.png', '★ Butterfly Knife | Stained'), +('weapon_knife_butterfly', 515, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_oiled_light.png', '★ Butterfly Knife | Case Hardened'), +('weapon_knife_butterfly', 515, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_zebra_light.png', '★ Butterfly Knife | Slaughter'), +('weapon_knife_butterfly', 515, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_light.png', '★ Butterfly Knife | Safari Mesh'), +('weapon_knife_butterfly', 515, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_light.png', '★ Butterfly Knife | Boreal Forest'), +('weapon_knife_butterfly', 515, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_so_purple_light.png', '★ Butterfly Knife | Ultraviolet'), +('weapon_knife_butterfly', 515, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_sp_tape_urban_light.png', '★ Butterfly Knife | Urban Masked'), +('weapon_knife_butterfly', 515, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_sp_dapple_light.png', '★ Butterfly Knife | Scorched'), +('weapon_knife_butterfly', 515, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_an_tiger_orange_light.png', '★ Butterfly Knife | Tiger Tooth'), +('weapon_knife_butterfly', 515, 411, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_damascus_90_light.png', '★ Butterfly Knife | Damascus Steel'), +('weapon_knife_butterfly', 515, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_marble_fade_light.png', '★ Butterfly Knife | Marble Fade'), +('weapon_knife_butterfly', 515, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_steel_knife_light.png', '★ Butterfly Knife | Rust Coat'), +('weapon_knife_butterfly', 515, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_ruby_marbleized_light.png', '★ Butterfly Knife | Doppler'), +('weapon_knife_butterfly', 515, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase1_light.png', '★ Butterfly Knife | Doppler'), +('weapon_knife_butterfly', 515, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase3_light.png', '★ Butterfly Knife | Doppler'), +('weapon_knife_butterfly', 515, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase4_light.png', '★ Butterfly Knife | Doppler'), +('weapon_knife_butterfly', 515, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_emerald_marbleized_light.png', '★ Butterfly Knife | Gamma Doppler'), +('weapon_knife_butterfly', 515, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase1_light.png', '★ Butterfly Knife | Gamma Doppler'), +('weapon_knife_butterfly', 515, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase2_light.png', '★ Butterfly Knife | Gamma Doppler'), +('weapon_knife_butterfly', 515, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase3_light.png', '★ Butterfly Knife | Gamma Doppler'), +('weapon_knife_butterfly', 515, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase4_light.png', '★ Butterfly Knife | Gamma Doppler'), +('weapon_knife_butterfly', 515, 579, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_ocean_knife_90_light.png', '★ Butterfly Knife | Bright Water'), +('weapon_knife_butterfly', 515, 581, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_marked_up_90_light.png', '★ Butterfly Knife | Freehand'), +('weapon_knife_butterfly', 515, 617, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_blackpearl_marbleized_b_light.png', '★ Butterfly Knife | Doppler'), +('weapon_knife_butterfly', 515, 618, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase2_b_light.png', '★ Butterfly Knife | Doppler'), +('weapon_knife_butterfly', 515, 619, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_sapphire_marbleized_b_light.png', '★ Butterfly Knife | Doppler'), +('weapon_knife_butterfly', 515, 1105, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_cu_butterfly_lore_light.png', '★ Butterfly Knife | Lore'), +('weapon_knife_butterfly', 515, 1110, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_gs_butterfly_black_laminate_light.png', '★ Butterfly Knife | Black Laminate'), +('weapon_knife_butterfly', 515, 1115, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_gs_butterfly_autotronic_light.png', '★ Butterfly Knife | Autotronic'), +('weapon_knife_push', 516, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_ddpat_light.png', '★ Shadow Daggers | Forest DDPAT'), +('weapon_knife_push', 516, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_webs_light.png', '★ Shadow Daggers | Crimson Web'), +('weapon_knife_push', 516, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aa_fade_light.png', '★ Shadow Daggers | Fade'), +('weapon_knife_push', 516, 40, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_so_night_light.png', '★ Shadow Daggers | Night'), +('weapon_knife_push', 516, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_blued_light.png', '★ Shadow Daggers | Blue Steel'), +('weapon_knife_push', 516, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_forced_light.png', '★ Shadow Daggers | Stained'), +('weapon_knife_push', 516, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_oiled_light.png', '★ Shadow Daggers | Case Hardened'), +('weapon_knife_push', 516, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_zebra_light.png', '★ Shadow Daggers | Slaughter'), +('weapon_knife_push', 516, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_sp_mesh_tan_light.png', '★ Shadow Daggers | Safari Mesh'), +('weapon_knife_push', 516, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_forest_boreal_light.png', '★ Shadow Daggers | Boreal Forest'), +('weapon_knife_push', 516, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_so_purple_light.png', '★ Shadow Daggers | Ultraviolet'), +('weapon_knife_push', 516, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_sp_tape_urban_light.png', '★ Shadow Daggers | Urban Masked'), +('weapon_knife_push', 516, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_sp_dapple_light.png', '★ Shadow Daggers | Scorched'), +('weapon_knife_push', 516, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_an_tiger_orange_light.png', '★ Shadow Daggers | Tiger Tooth'), +('weapon_knife_push', 516, 411, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_damascus_90_light.png', '★ Shadow Daggers | Damascus Steel'), +('weapon_knife_push', 516, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_marble_fade_light.png', '★ Shadow Daggers | Marble Fade'), +('weapon_knife_push', 516, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_steel_knife_light.png', '★ Shadow Daggers | Rust Coat'), +('weapon_knife_push', 516, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_ruby_marbleized_light.png', '★ Shadow Daggers | Doppler'), +('weapon_knife_push', 516, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase1_light.png', '★ Shadow Daggers | Doppler'), +('weapon_knife_push', 516, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase3_light.png', '★ Shadow Daggers | Doppler'), +('weapon_knife_push', 516, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase4_light.png', '★ Shadow Daggers | Doppler'), +('weapon_knife_push', 516, 568, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_emerald_marbleized_light.png', '★ Shadow Daggers | Gamma Doppler'), +('weapon_knife_push', 516, 569, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase1_light.png', '★ Shadow Daggers | Gamma Doppler'), +('weapon_knife_push', 516, 570, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase2_light.png', '★ Shadow Daggers | Gamma Doppler'), +('weapon_knife_push', 516, 571, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase3_light.png', '★ Shadow Daggers | Gamma Doppler'), +('weapon_knife_push', 516, 572, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase4_light.png', '★ Shadow Daggers | Gamma Doppler'), +('weapon_knife_push', 516, 579, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_ocean_knife_90_light.png', '★ Shadow Daggers | Bright Water'), +('weapon_knife_push', 516, 581, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_marked_up_90_light.png', '★ Shadow Daggers | Freehand'), +('weapon_knife_push', 516, 617, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_blackpearl_marbleized_b_light.png', '★ Shadow Daggers | Doppler'), +('weapon_knife_push', 516, 618, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase2_b_light.png', '★ Shadow Daggers | Doppler'), +('weapon_knife_push', 516, 619, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_sapphire_marbleized_b_light.png', '★ Shadow Daggers | Doppler'), +('weapon_knife_push', 516, 1108, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_cu_push_lore_light.png', '★ Shadow Daggers | Lore'), +('weapon_knife_push', 516, 1113, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_gs_push_black_laminate_light.png', '★ Shadow Daggers | Black Laminate'), +('weapon_knife_push', 516, 1118, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_gs_push_autotronic_light.png', '★ Shadow Daggers | Autotronic'), +('weapon_knife_cord', 517, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_hy_ddpat_light.png', '★ Paracord Knife | Forest DDPAT'), +('weapon_knife_cord', 517, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_hy_webs_light.png', '★ Paracord Knife | Crimson Web'), +('weapon_knife_cord', 517, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aa_fade_light.png', '★ Paracord Knife | Fade'), +('weapon_knife_cord', 517, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aq_blued_light.png', '★ Paracord Knife | Blue Steel'), +('weapon_knife_cord', 517, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aq_forced_light.png', '★ Paracord Knife | Stained'), +('weapon_knife_cord', 517, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aq_oiled_light.png', '★ Paracord Knife | Case Hardened'), +('weapon_knife_cord', 517, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_am_zebra_light.png', '★ Paracord Knife | Slaughter'), +('weapon_knife_cord', 517, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_mesh_tan_light.png', '★ Paracord Knife | Safari Mesh'), +('weapon_knife_cord', 517, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_hy_forest_boreal_light.png', '★ Paracord Knife | Boreal Forest'), +('weapon_knife_cord', 517, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_tape_urban_light.png', '★ Paracord Knife | Urban Masked'), +('weapon_knife_cord', 517, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_dapple_light.png', '★ Paracord Knife | Scorched'), +('weapon_knife_cord', 517, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_nightstripe_light.png', '★ Paracord Knife | Night Stripe'), +('weapon_knife_canis', 518, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_hy_ddpat_light.png', '★ Survival Knife | Forest DDPAT'), +('weapon_knife_canis', 518, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_hy_webs_light.png', '★ Survival Knife | Crimson Web'), +('weapon_knife_canis', 518, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aa_fade_light.png', '★ Survival Knife | Fade'), +('weapon_knife_canis', 518, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aq_blued_light.png', '★ Survival Knife | Blue Steel'), +('weapon_knife_canis', 518, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aq_forced_light.png', '★ Survival Knife | Stained'), +('weapon_knife_canis', 518, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aq_oiled_light.png', '★ Survival Knife | Case Hardened'), +('weapon_knife_canis', 518, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_am_zebra_light.png', '★ Survival Knife | Slaughter'), +('weapon_knife_canis', 518, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_mesh_tan_light.png', '★ Survival Knife | Safari Mesh'), +('weapon_knife_canis', 518, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_hy_forest_boreal_light.png', '★ Survival Knife | Boreal Forest'), +('weapon_knife_canis', 518, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_tape_urban_light.png', '★ Survival Knife | Urban Masked'), +('weapon_knife_canis', 518, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_dapple_light.png', '★ Survival Knife | Scorched'), +('weapon_knife_canis', 518, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_nightstripe_light.png', '★ Survival Knife | Night Stripe'), +('weapon_knife_ursus', 519, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_hy_ddpat_light.png', '★ Ursus Knife | Forest DDPAT'), +('weapon_knife_ursus', 519, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_hy_webs_light.png', '★ Ursus Knife | Crimson Web'), +('weapon_knife_ursus', 519, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aa_fade_light.png', '★ Ursus Knife | Fade'), +('weapon_knife_ursus', 519, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_blued_light.png', '★ Ursus Knife | Blue Steel'), +('weapon_knife_ursus', 519, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_forced_light.png', '★ Ursus Knife | Stained'), +('weapon_knife_ursus', 519, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_oiled_light.png', '★ Ursus Knife | Case Hardened'), +('weapon_knife_ursus', 519, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_zebra_light.png', '★ Ursus Knife | Slaughter'), +('weapon_knife_ursus', 519, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_mesh_tan_light.png', '★ Ursus Knife | Safari Mesh'), +('weapon_knife_ursus', 519, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_hy_forest_boreal_light.png', '★ Ursus Knife | Boreal Forest'), +('weapon_knife_ursus', 519, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_so_purple_light.png', '★ Ursus Knife | Ultraviolet'), +('weapon_knife_ursus', 519, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_tape_urban_light.png', '★ Ursus Knife | Urban Masked'), +('weapon_knife_ursus', 519, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_dapple_light.png', '★ Ursus Knife | Scorched'), +('weapon_knife_ursus', 519, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_an_tiger_orange_light.png', '★ Ursus Knife | Tiger Tooth'), +('weapon_knife_ursus', 519, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_marble_fade_light.png', '★ Ursus Knife | Marble Fade'), +('weapon_knife_ursus', 519, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_steel_knife_light.png', '★ Ursus Knife | Rust Coat'), +('weapon_knife_ursus', 519, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_ruby_marbleized_light.png', '★ Ursus Knife | Doppler'), +('weapon_knife_ursus', 519, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_sapphire_marbleized_light.png', '★ Ursus Knife | Doppler'), +('weapon_knife_ursus', 519, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_blackpearl_marbleized_light.png', '★ Ursus Knife | Doppler'), +('weapon_knife_ursus', 519, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase1_light.png', '★ Ursus Knife | Doppler'), +('weapon_knife_ursus', 519, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase2_light.png', '★ Ursus Knife | Doppler'), +('weapon_knife_ursus', 519, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase3_light.png', '★ Ursus Knife | Doppler'), +('weapon_knife_ursus', 519, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase4_light.png', '★ Ursus Knife | Doppler'), +('weapon_knife_ursus', 519, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_nightstripe_light.png', '★ Ursus Knife | Night Stripe'), +('weapon_knife_ursus', 519, 857, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_damascus_prisma_light.png', '★ Ursus Knife | Damascus Steel'), +('weapon_knife_gypsy_jackknife', 520, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_hy_ddpat_light.png', '★ Navaja Knife | Forest DDPAT'), +('weapon_knife_gypsy_jackknife', 520, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_hy_webs_light.png', '★ Navaja Knife | Crimson Web'), +('weapon_knife_gypsy_jackknife', 520, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aa_fade_light.png', '★ Navaja Knife | Fade'), +('weapon_knife_gypsy_jackknife', 520, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_blued_light.png', '★ Navaja Knife | Blue Steel'), +('weapon_knife_gypsy_jackknife', 520, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_forced_light.png', '★ Navaja Knife | Stained'), +('weapon_knife_gypsy_jackknife', 520, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_oiled_light.png', '★ Navaja Knife | Case Hardened'), +('weapon_knife_gypsy_jackknife', 520, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_zebra_light.png', '★ Navaja Knife | Slaughter'), +('weapon_knife_gypsy_jackknife', 520, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_mesh_tan_light.png', '★ Navaja Knife | Safari Mesh'), +('weapon_knife_gypsy_jackknife', 520, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_hy_forest_boreal_light.png', '★ Navaja Knife | Boreal Forest'), +('weapon_knife_gypsy_jackknife', 520, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_so_purple_light.png', '★ Navaja Knife | Ultraviolet'), +('weapon_knife_gypsy_jackknife', 520, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_tape_urban_light.png', '★ Navaja Knife | Urban Masked'), +('weapon_knife_gypsy_jackknife', 520, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_dapple_light.png', '★ Navaja Knife | Scorched'), +('weapon_knife_gypsy_jackknife', 520, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_an_tiger_orange_light.png', '★ Navaja Knife | Tiger Tooth'), +('weapon_knife_gypsy_jackknife', 520, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_marble_fade_light.png', '★ Navaja Knife | Marble Fade'), +('weapon_knife_gypsy_jackknife', 520, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_steel_knife_light.png', '★ Navaja Knife | Rust Coat'), +('weapon_knife_gypsy_jackknife', 520, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_ruby_marbleized_light.png', '★ Navaja Knife | Doppler'), +('weapon_knife_gypsy_jackknife', 520, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_sapphire_marbleized_light.png', '★ Navaja Knife | Doppler'), +('weapon_knife_gypsy_jackknife', 520, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_blackpearl_marbleized_light.png', '★ Navaja Knife | Doppler'), +('weapon_knife_gypsy_jackknife', 520, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase1_light.png', '★ Navaja Knife | Doppler'), +('weapon_knife_gypsy_jackknife', 520, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase2_light.png', '★ Navaja Knife | Doppler'), +('weapon_knife_gypsy_jackknife', 520, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase3_light.png', '★ Navaja Knife | Doppler'), +('weapon_knife_gypsy_jackknife', 520, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase4_light.png', '★ Navaja Knife | Doppler'), +('weapon_knife_gypsy_jackknife', 520, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_nightstripe_light.png', '★ Navaja Knife | Night Stripe'), +('weapon_knife_gypsy_jackknife', 520, 857, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_damascus_prisma_light.png', '★ Navaja Knife | Damascus Steel'), +('weapon_knife_outdoor', 522, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_hy_ddpat_light.png', '★ Nomad Knife | Forest DDPAT'), +('weapon_knife_outdoor', 522, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_hy_webs_light.png', '★ Nomad Knife | Crimson Web'), +('weapon_knife_outdoor', 522, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aa_fade_light.png', '★ Nomad Knife | Fade'), +('weapon_knife_outdoor', 522, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aq_blued_light.png', '★ Nomad Knife | Blue Steel'), +('weapon_knife_outdoor', 522, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aq_forced_light.png', '★ Nomad Knife | Stained'), +('weapon_knife_outdoor', 522, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aq_oiled_light.png', '★ Nomad Knife | Case Hardened'), +('weapon_knife_outdoor', 522, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_am_zebra_light.png', '★ Nomad Knife | Slaughter'), +('weapon_knife_outdoor', 522, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_mesh_tan_light.png', '★ Nomad Knife | Safari Mesh'), +('weapon_knife_outdoor', 522, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_hy_forest_boreal_light.png', '★ Nomad Knife | Boreal Forest'), +('weapon_knife_outdoor', 522, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_tape_urban_light.png', '★ Nomad Knife | Urban Masked'), +('weapon_knife_outdoor', 522, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_dapple_light.png', '★ Nomad Knife | Scorched'), +('weapon_knife_outdoor', 522, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_nightstripe_light.png', '★ Nomad Knife | Night Stripe'), +('weapon_knife_stiletto', 522, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_hy_ddpat_light.png', '★ Stiletto Knife | Forest DDPAT'), +('weapon_knife_stiletto', 522, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_hy_webs_light.png', '★ Stiletto Knife | Crimson Web'), +('weapon_knife_stiletto', 522, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aa_fade_light.png', '★ Stiletto Knife | Fade'), +('weapon_knife_stiletto', 522, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_blued_light.png', '★ Stiletto Knife | Blue Steel'), +('weapon_knife_stiletto', 522, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_forced_light.png', '★ Stiletto Knife | Stained'), +('weapon_knife_stiletto', 522, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_oiled_light.png', '★ Stiletto Knife | Case Hardened'), +('weapon_knife_stiletto', 522, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_zebra_light.png', '★ Stiletto Knife | Slaughter'), +('weapon_knife_stiletto', 522, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_mesh_tan_light.png', '★ Stiletto Knife | Safari Mesh'), +('weapon_knife_stiletto', 522, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_hy_forest_boreal_light.png', '★ Stiletto Knife | Boreal Forest'), +('weapon_knife_stiletto', 522, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_so_purple_light.png', '★ Stiletto Knife | Ultraviolet'), +('weapon_knife_stiletto', 522, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_tape_urban_light.png', '★ Stiletto Knife | Urban Masked'), +('weapon_knife_stiletto', 522, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_dapple_light.png', '★ Stiletto Knife | Scorched'), +('weapon_knife_stiletto', 522, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_an_tiger_orange_light.png', '★ Stiletto Knife | Tiger Tooth'), +('weapon_knife_stiletto', 522, 413, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_marble_fade_light.png', '★ Stiletto Knife | Marble Fade'), +('weapon_knife_stiletto', 522, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_steel_knife_light.png', '★ Stiletto Knife | Rust Coat'), +('weapon_knife_stiletto', 522, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_ruby_marbleized_light.png', '★ Stiletto Knife | Doppler'), +('weapon_knife_stiletto', 522, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_sapphire_marbleized_light.png', '★ Stiletto Knife | Doppler'), +('weapon_knife_stiletto', 522, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_blackpearl_marbleized_light.png', '★ Stiletto Knife | Doppler'), +('weapon_knife_stiletto', 522, 418, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase1_light.png', '★ Stiletto Knife | Doppler'), +('weapon_knife_stiletto', 522, 419, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase2_light.png', '★ Stiletto Knife | Doppler'), +('weapon_knife_stiletto', 522, 420, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase3_light.png', '★ Stiletto Knife | Doppler'), +('weapon_knife_stiletto', 522, 421, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase4_light.png', '★ Stiletto Knife | Doppler'), +('weapon_knife_stiletto', 522, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_nightstripe_light.png', '★ Stiletto Knife | Night Stripe'), +('weapon_knife_stiletto', 522, 857, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_damascus_prisma_light.png', '★ Stiletto Knife | Damascus Steel'), +('weapon_knife_widowmaker', 523, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_hy_ddpat_light.png', '★ Talon Knife | Forest DDPAT'), +('weapon_knife_widowmaker', 523, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_hy_webs_light.png', '★ Talon Knife | Crimson Web'), +('weapon_knife_widowmaker', 523, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aa_fade_light.png', '★ Talon Knife | Fade'), +('weapon_knife_widowmaker', 523, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_blued_light.png', '★ Talon Knife | Blue Steel'), +('weapon_knife_widowmaker', 523, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_forced_light.png', '★ Talon Knife | Stained'), +('weapon_knife_widowmaker', 523, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_oiled_light.png', '★ Talon Knife | Case Hardened'), +('weapon_knife_widowmaker', 523, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_zebra_light.png', '★ Talon Knife | Slaughter'), +('weapon_knife_widowmaker', 523, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_mesh_tan_light.png', '★ Talon Knife | Safari Mesh'), +('weapon_knife_widowmaker', 523, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_hy_forest_boreal_light.png', '★ Talon Knife | Boreal Forest'), +('weapon_knife_widowmaker', 523, 98, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_so_purple_light.png', '★ Talon Knife | Ultraviolet'), +('weapon_knife_widowmaker', 523, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_tape_urban_light.png', '★ Talon Knife | Urban Masked'), +('weapon_knife_widowmaker', 523, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_dapple_light.png', '★ Talon Knife | Scorched'), +('weapon_knife_widowmaker', 523, 409, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_an_tiger_orange_light.png', '★ Talon Knife | Tiger Tooth'), +('weapon_knife_widowmaker', 523, 414, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_steel_knife_light.png', '★ Talon Knife | Rust Coat'), +('weapon_knife_widowmaker', 523, 415, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_ruby_marbleized_light.png', '★ Talon Knife | Doppler'), +('weapon_knife_widowmaker', 523, 416, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_sapphire_marbleized_light.png', '★ Talon Knife | Doppler'), +('weapon_knife_widowmaker', 523, 417, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_blackpearl_marbleized_light.png', '★ Talon Knife | Doppler'), +('weapon_knife_widowmaker', 523, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_nightstripe_light.png', '★ Talon Knife | Night Stripe'), +('weapon_knife_widowmaker', 523, 852, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase1_widow_light.png', '★ Talon Knife | Doppler'), +('weapon_knife_widowmaker', 523, 853, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase2_widow_light.png', '★ Talon Knife | Doppler'), +('weapon_knife_widowmaker', 523, 854, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase3_widow_light.png', '★ Talon Knife | Doppler'), +('weapon_knife_widowmaker', 523, 855, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase4_widow_light.png', '★ Talon Knife | Doppler'), +('weapon_knife_widowmaker', 523, 856, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_marble_fade_widow_light.png', '★ Talon Knife | Marble Fade'), +('weapon_knife_widowmaker', 523, 858, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_damascus_widow_light.png', '★ Talon Knife | Damascus Steel'), +('weapon_knife_skeleton', 525, 5, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_hy_ddpat_light.png', '★ Skeleton Knife | Forest DDPAT'), +('weapon_knife_skeleton', 525, 12, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_hy_webs_light.png', '★ Skeleton Knife | Crimson Web'), +('weapon_knife_skeleton', 525, 38, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aa_fade_light.png', '★ Skeleton Knife | Fade'), +('weapon_knife_skeleton', 525, 42, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aq_blued_light.png', '★ Skeleton Knife | Blue Steel'), +('weapon_knife_skeleton', 525, 43, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aq_forced_light.png', '★ Skeleton Knife | Stained'), +('weapon_knife_skeleton', 525, 44, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aq_oiled_light.png', '★ Skeleton Knife | Case Hardened'), +('weapon_knife_skeleton', 525, 59, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_am_zebra_light.png', '★ Skeleton Knife | Slaughter'), +('weapon_knife_skeleton', 525, 72, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_mesh_tan_light.png', '★ Skeleton Knife | Safari Mesh'), +('weapon_knife_skeleton', 525, 77, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_hy_forest_boreal_light.png', '★ Skeleton Knife | Boreal Forest'), +('weapon_knife_skeleton', 525, 143, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_tape_urban_light.png', '★ Skeleton Knife | Urban Masked'), +('weapon_knife_skeleton', 525, 175, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_dapple_light.png', '★ Skeleton Knife | Scorched'), +('weapon_knife_skeleton', 525, 735, 'https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_nightstripe_light.png', '★ Skeleton Knife | Night Stripe'); \ No newline at end of file diff --git a/website/getskins.php b/website/getskins.php new file mode 100644 index 00000000..574c3664 --- /dev/null +++ b/website/getskins.php @@ -0,0 +1,73 @@ + 1, +"weapon_elite" => 2, +"weapon_fiveseven" => 3, +"weapon_glock" => 4, +"weapon_ak47" => 7, +"weapon_aug" => 8, +"weapon_awp" => 9, +"weapon_famas" => 10, +"weapon_g3sg1" => 10, +"weapon_galilar" => 13, +"weapon_m249" => 14, +"weapon_m4a1" => 16, +"weapon_mac10" => 17, +"weapon_p90" => 19, +"weapon_mp5sd" => 23, +"weapon_ump45" => 24, +"weapon_xm1014" => 25, +"weapon_bizon" => 26, +"weapon_mag7" => 27, +"weapon_negev" => 28, +"weapon_sawedoff" => 29, +"weapon_tec9" => 30, +"weapon_hkp2000" => 32, +"weapon_mp7" => 33, +"weapon_mp9" => 34, +"weapon_nova" => 35, +"weapon_p250" => 36, +"weapon_scar20" => 38, +"weapon_sg556" => 39, +"weapon_ssg08" => 40, +"weapon_m4a1_silencer" => 60, +"weapon_usp_silencer" => 61, +"weapon_cz75a" => 63, +"weapon_revolver" => 64, +"weapon_bayonet" => 500, +"weapon_knife_css" => 503, +"weapon_knife_flip" => 505, +"weapon_knife_gut" => 506, +"weapon_knife_karambit" => 507, +"weapon_knife_m9_bayonet" => 508, +"weapon_knife_tactical" => 509, +"weapon_knife_falchion" => 512, +"weapon_knife_survival_bowie"=> 514, +"weapon_knife_butterfly" => 515, +"weapon_knife_push" => 516, +"weapon_knife_cord" => 517, +"weapon_knife_canis" => 518, +"weapon_knife_ursus" => 519, +"weapon_knife_gypsy_jackknife" => 520, +"weapon_knife_outdoor" => 522, +"weapon_knife_stiletto" => 522, +"weapon_knife_widowmaker" => 523, +"weapon_knife_skeleton" => 525); +$json = json_decode(file_get_contents('skins.json')); +echo "
";
+foreach($json as $skin)
+{
+	if(!str_contains($skin->weapon->id, "weapon_")) continue;
+	$name = $skin->name;
+	$name = str_replace("'","\'",$name);
+	$weapon = $skin->weapon->id;
+	$image = $skin->image;
+	$paint = $skin->paint_index;
+	echo "('{$weapon}', {$weapons[$weapon]}, {$paint}, '{$image}', '{$name}')";
+	echo ",
"; + +} +//print_r($json); +echo "
"; + +?> diff --git a/website/img/weapon/weapon_ak47.png b/website/img/weapon/weapon_ak47.png new file mode 100644 index 00000000..428088e1 Binary files /dev/null and b/website/img/weapon/weapon_ak47.png differ diff --git a/website/img/weapon/weapon_aug.png b/website/img/weapon/weapon_aug.png new file mode 100644 index 00000000..7fd38bd5 Binary files /dev/null and b/website/img/weapon/weapon_aug.png differ diff --git a/website/img/weapon/weapon_awp.png b/website/img/weapon/weapon_awp.png new file mode 100644 index 00000000..ef227521 Binary files /dev/null and b/website/img/weapon/weapon_awp.png differ diff --git a/website/img/weapon/weapon_bayonet.png b/website/img/weapon/weapon_bayonet.png new file mode 100644 index 00000000..b4bf0f14 Binary files /dev/null and b/website/img/weapon/weapon_bayonet.png differ diff --git a/website/img/weapon/weapon_bizon.png b/website/img/weapon/weapon_bizon.png new file mode 100644 index 00000000..59de3cbe Binary files /dev/null and b/website/img/weapon/weapon_bizon.png differ diff --git a/website/img/weapon/weapon_cz75a.png b/website/img/weapon/weapon_cz75a.png new file mode 100644 index 00000000..d44e4172 Binary files /dev/null and b/website/img/weapon/weapon_cz75a.png differ diff --git a/website/img/weapon/weapon_deagle.png b/website/img/weapon/weapon_deagle.png new file mode 100644 index 00000000..72324cc1 Binary files /dev/null and b/website/img/weapon/weapon_deagle.png differ diff --git a/website/img/weapon/weapon_elite.png b/website/img/weapon/weapon_elite.png new file mode 100644 index 00000000..57ab7158 Binary files /dev/null and b/website/img/weapon/weapon_elite.png differ diff --git a/website/img/weapon/weapon_famas.png b/website/img/weapon/weapon_famas.png new file mode 100644 index 00000000..9a0978a9 Binary files /dev/null and b/website/img/weapon/weapon_famas.png differ diff --git a/website/img/weapon/weapon_fiveseven.png b/website/img/weapon/weapon_fiveseven.png new file mode 100644 index 00000000..4435cd9b Binary files /dev/null and b/website/img/weapon/weapon_fiveseven.png differ diff --git a/website/img/weapon/weapon_g3sg1.png b/website/img/weapon/weapon_g3sg1.png new file mode 100644 index 00000000..cc70390d Binary files /dev/null and b/website/img/weapon/weapon_g3sg1.png differ diff --git a/website/img/weapon/weapon_galilar.png b/website/img/weapon/weapon_galilar.png new file mode 100644 index 00000000..84cbc64c Binary files /dev/null and b/website/img/weapon/weapon_galilar.png differ diff --git a/website/img/weapon/weapon_glock.png b/website/img/weapon/weapon_glock.png new file mode 100644 index 00000000..68af0646 Binary files /dev/null and b/website/img/weapon/weapon_glock.png differ diff --git a/website/img/weapon/weapon_hkp2000.png b/website/img/weapon/weapon_hkp2000.png new file mode 100644 index 00000000..ae3393f9 Binary files /dev/null and b/website/img/weapon/weapon_hkp2000.png differ diff --git a/website/img/weapon/weapon_knife_butterfly.png b/website/img/weapon/weapon_knife_butterfly.png new file mode 100644 index 00000000..a93881f5 Binary files /dev/null and b/website/img/weapon/weapon_knife_butterfly.png differ diff --git a/website/img/weapon/weapon_knife_canis.png b/website/img/weapon/weapon_knife_canis.png new file mode 100644 index 00000000..f9acecde Binary files /dev/null and b/website/img/weapon/weapon_knife_canis.png differ diff --git a/website/img/weapon/weapon_knife_cord.png b/website/img/weapon/weapon_knife_cord.png new file mode 100644 index 00000000..b87b2a2c Binary files /dev/null and b/website/img/weapon/weapon_knife_cord.png differ diff --git a/website/img/weapon/weapon_knife_css.png b/website/img/weapon/weapon_knife_css.png new file mode 100644 index 00000000..752ec338 Binary files /dev/null and b/website/img/weapon/weapon_knife_css.png differ diff --git a/website/img/weapon/weapon_knife_falchion.png b/website/img/weapon/weapon_knife_falchion.png new file mode 100644 index 00000000..424f9807 Binary files /dev/null and b/website/img/weapon/weapon_knife_falchion.png differ diff --git a/website/img/weapon/weapon_knife_flip.png b/website/img/weapon/weapon_knife_flip.png new file mode 100644 index 00000000..7f6bf225 Binary files /dev/null and b/website/img/weapon/weapon_knife_flip.png differ diff --git a/website/img/weapon/weapon_knife_gut.png b/website/img/weapon/weapon_knife_gut.png new file mode 100644 index 00000000..d0dafbdf Binary files /dev/null and b/website/img/weapon/weapon_knife_gut.png differ diff --git a/website/img/weapon/weapon_knife_gypsy_jackknife.png b/website/img/weapon/weapon_knife_gypsy_jackknife.png new file mode 100644 index 00000000..117e757d Binary files /dev/null and b/website/img/weapon/weapon_knife_gypsy_jackknife.png differ diff --git a/website/img/weapon/weapon_knife_karambit.png b/website/img/weapon/weapon_knife_karambit.png new file mode 100644 index 00000000..df717159 Binary files /dev/null and b/website/img/weapon/weapon_knife_karambit.png differ diff --git a/website/img/weapon/weapon_knife_m9_bayonet.png b/website/img/weapon/weapon_knife_m9_bayonet.png new file mode 100644 index 00000000..2baecfb0 Binary files /dev/null and b/website/img/weapon/weapon_knife_m9_bayonet.png differ diff --git a/website/img/weapon/weapon_knife_outdoor.png b/website/img/weapon/weapon_knife_outdoor.png new file mode 100644 index 00000000..6181797e Binary files /dev/null and b/website/img/weapon/weapon_knife_outdoor.png differ diff --git a/website/img/weapon/weapon_knife_push.png b/website/img/weapon/weapon_knife_push.png new file mode 100644 index 00000000..2790b9ae Binary files /dev/null and b/website/img/weapon/weapon_knife_push.png differ diff --git a/website/img/weapon/weapon_knife_skeleton.png b/website/img/weapon/weapon_knife_skeleton.png new file mode 100644 index 00000000..945c6576 Binary files /dev/null and b/website/img/weapon/weapon_knife_skeleton.png differ diff --git a/website/img/weapon/weapon_knife_stiletto.png b/website/img/weapon/weapon_knife_stiletto.png new file mode 100644 index 00000000..e8eb678f Binary files /dev/null and b/website/img/weapon/weapon_knife_stiletto.png differ diff --git a/website/img/weapon/weapon_knife_survival_bowie.png b/website/img/weapon/weapon_knife_survival_bowie.png new file mode 100644 index 00000000..aaf9d36e Binary files /dev/null and b/website/img/weapon/weapon_knife_survival_bowie.png differ diff --git a/website/img/weapon/weapon_knife_tactical.png b/website/img/weapon/weapon_knife_tactical.png new file mode 100644 index 00000000..c1b91108 Binary files /dev/null and b/website/img/weapon/weapon_knife_tactical.png differ diff --git a/website/img/weapon/weapon_knife_ursus.png b/website/img/weapon/weapon_knife_ursus.png new file mode 100644 index 00000000..bda83078 Binary files /dev/null and b/website/img/weapon/weapon_knife_ursus.png differ diff --git a/website/img/weapon/weapon_knife_widowmaker.png b/website/img/weapon/weapon_knife_widowmaker.png new file mode 100644 index 00000000..16610c10 Binary files /dev/null and b/website/img/weapon/weapon_knife_widowmaker.png differ diff --git a/website/img/weapon/weapon_m249.png b/website/img/weapon/weapon_m249.png new file mode 100644 index 00000000..2cbc9767 Binary files /dev/null and b/website/img/weapon/weapon_m249.png differ diff --git a/website/img/weapon/weapon_m4a1.png b/website/img/weapon/weapon_m4a1.png new file mode 100644 index 00000000..6b9473a3 Binary files /dev/null and b/website/img/weapon/weapon_m4a1.png differ diff --git a/website/img/weapon/weapon_m4a1_silencer.png b/website/img/weapon/weapon_m4a1_silencer.png new file mode 100644 index 00000000..159a9ff5 Binary files /dev/null and b/website/img/weapon/weapon_m4a1_silencer.png differ diff --git a/website/img/weapon/weapon_mac10.png b/website/img/weapon/weapon_mac10.png new file mode 100644 index 00000000..b24bd667 Binary files /dev/null and b/website/img/weapon/weapon_mac10.png differ diff --git a/website/img/weapon/weapon_mag7.png b/website/img/weapon/weapon_mag7.png new file mode 100644 index 00000000..b9ec9643 Binary files /dev/null and b/website/img/weapon/weapon_mag7.png differ diff --git a/website/img/weapon/weapon_mp5sd.png b/website/img/weapon/weapon_mp5sd.png new file mode 100644 index 00000000..46c32c5b Binary files /dev/null and b/website/img/weapon/weapon_mp5sd.png differ diff --git a/website/img/weapon/weapon_mp7.png b/website/img/weapon/weapon_mp7.png new file mode 100644 index 00000000..727c2d6d Binary files /dev/null and b/website/img/weapon/weapon_mp7.png differ diff --git a/website/img/weapon/weapon_mp9.png b/website/img/weapon/weapon_mp9.png new file mode 100644 index 00000000..2000a858 Binary files /dev/null and b/website/img/weapon/weapon_mp9.png differ diff --git a/website/img/weapon/weapon_negev.png b/website/img/weapon/weapon_negev.png new file mode 100644 index 00000000..e5120a60 Binary files /dev/null and b/website/img/weapon/weapon_negev.png differ diff --git a/website/img/weapon/weapon_nova.png b/website/img/weapon/weapon_nova.png new file mode 100644 index 00000000..9b4ce804 Binary files /dev/null and b/website/img/weapon/weapon_nova.png differ diff --git a/website/img/weapon/weapon_p250.png b/website/img/weapon/weapon_p250.png new file mode 100644 index 00000000..110eb7f0 Binary files /dev/null and b/website/img/weapon/weapon_p250.png differ diff --git a/website/img/weapon/weapon_p90.png b/website/img/weapon/weapon_p90.png new file mode 100644 index 00000000..424f93a5 Binary files /dev/null and b/website/img/weapon/weapon_p90.png differ diff --git a/website/img/weapon/weapon_revolver.png b/website/img/weapon/weapon_revolver.png new file mode 100644 index 00000000..dfa3deaa Binary files /dev/null and b/website/img/weapon/weapon_revolver.png differ diff --git a/website/img/weapon/weapon_sawedoff.png b/website/img/weapon/weapon_sawedoff.png new file mode 100644 index 00000000..970d0aee Binary files /dev/null and b/website/img/weapon/weapon_sawedoff.png differ diff --git a/website/img/weapon/weapon_scar20.png b/website/img/weapon/weapon_scar20.png new file mode 100644 index 00000000..7d494898 Binary files /dev/null and b/website/img/weapon/weapon_scar20.png differ diff --git a/website/img/weapon/weapon_sg556.png b/website/img/weapon/weapon_sg556.png new file mode 100644 index 00000000..76d9162f Binary files /dev/null and b/website/img/weapon/weapon_sg556.png differ diff --git a/website/img/weapon/weapon_ssg08.png b/website/img/weapon/weapon_ssg08.png new file mode 100644 index 00000000..036e21ce Binary files /dev/null and b/website/img/weapon/weapon_ssg08.png differ diff --git a/website/img/weapon/weapon_tec9.png b/website/img/weapon/weapon_tec9.png new file mode 100644 index 00000000..7d55f55b Binary files /dev/null and b/website/img/weapon/weapon_tec9.png differ diff --git a/website/img/weapon/weapon_ump45.png b/website/img/weapon/weapon_ump45.png new file mode 100644 index 00000000..18a456d1 Binary files /dev/null and b/website/img/weapon/weapon_ump45.png differ diff --git a/website/img/weapon/weapon_usp_silencer.png b/website/img/weapon/weapon_usp_silencer.png new file mode 100644 index 00000000..7db7564f Binary files /dev/null and b/website/img/weapon/weapon_usp_silencer.png differ diff --git a/website/img/weapon/weapon_xm1014.png b/website/img/weapon/weapon_xm1014.png new file mode 100644 index 00000000..66858567 Binary files /dev/null and b/website/img/weapon/weapon_xm1014.png differ diff --git a/website/index.php b/website/index.php new file mode 100644 index 00000000..e7c3eaa3 --- /dev/null +++ b/website/index.php @@ -0,0 +1,84 @@ +select("SELECT * FROM wp_weapons_paints WHERE weapon_defindex = :weapon_defindex AND paint = :paint", ["weapon_defindex" => $ex[0], "paint" => $ex[1]]); + + if($query2) { + $check = $db->select("SELECT * FROM wp_weapons_paints LEFT JOIN wp_player_skins ON wp_player_skins.weapon_paint_id = wp_weapons_paints.paint WHERE wp_weapons_paints.weapon_defindex = :weapon_defindex AND wp_player_skins.steamid = :steamid", ["weapon_defindex" => $ex[0], "steamid" => $steamid]); + if($check) { + $db->query("UPDATE wp_player_skins SET weapon_paint_id = :weapon_paint_id WHERE steamid = :steamid AND weapon_defindex = :weapon_defindex", ["steamid" => $steamid, "weapon_defindex" => $ex[0], "weapon_paint_id" => $query2[0]['paint']]); + } else { + $db->query("INSERT INTO wp_player_skins (`steamid`, `weapon_defindex`, `weapon_paint_id`) VALUES (:steamid, :weapon_defindex, :weapon_paint_id)", ["steamid" => $steamid, "weapon_defindex" => $ex[0],"weapon_paint_id" => $query2[0]["paint"]]); + } + } +} + +?> + + + + + + + + + CS2 Simple Weapon Paints + + + +
Your current weapon skin loadout.
+
+select("SELECT * FROM wp_weapons_paints GROUP BY weapon_defindex ORDER BY weapon_defindex"); +foreach($query as $key) { ?> +
+
+
+ select("SELECT * FROM wp_weapons_paints LEFT JOIN wp_player_skins ON wp_player_skins.weapon_paint_id = wp_weapons_paints.paint WHERE wp_player_skins.steamid = :steamid AND wp_weapons_paints.weapon_defindex = :weapon_defindex", ["steamid" => $steamid, "weapon_defindex" => $key['weapon_defindex']])) + { + echo "
"; + echo"
{$query3[0]["paint_name"]}
"; + echo "
"; + echo ""; + } + else + { + echo "
"; + echo"
{$key["paint_name"]}
"; + echo "
"; + echo""; + } + ?> +
+ +
+
+ +
+ + + \ No newline at end of file diff --git a/website/skins.json b/website/skins.json new file mode 100644 index 00000000..46e7bab7 --- /dev/null +++ b/website/skins.json @@ -0,0 +1,113707 @@ +[ + { + "id": "skin-65604", + "name": "Desert Eagle | Urban DDPAT", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_ddpat_urb", + "name": "Urban DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "17", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_ddpat_urb_light.png" + }, + { + "id": "skin-65684", + "name": "Desert Eagle | Blaze", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_flames", + "name": "Blaze" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "37", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aa_flames_light.png" + }, + { + "id": "skin-65696", + "name": "Desert Eagle | Night", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_so_night_light.png" + }, + { + "id": "skin-65780", + "name": "Desert Eagle | Hypnotic", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_vertigo", + "name": "Hypnotic" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "61", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aa_vertigo_light.png" + }, + { + "id": "skin-65896", + "name": "Desert Eagle | Mudder", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_mottled_sand", + "name": "Mudder" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "90", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_mottled_sand_light.png" + }, + { + "id": "skin-66276", + "name": "Desert Eagle | Golden Koi", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_scales_bravo", + "name": "Golden Koi" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "185", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_scales_bravo_light.png" + }, + { + "id": "skin-66460", + "name": "Desert Eagle | Cobalt Disruption", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ddpatdense_peacock", + "name": "Cobalt Disruption" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "231", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_ddpatdense_peacock_light.png" + }, + { + "id": "skin-66464", + "name": "Desert Eagle | Crimson Web", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_webs_darker", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "232", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_webs_darker_light.png" + }, + { + "id": "skin-66484", + "name": "Desert Eagle | Urban Rubble", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_varicamo_urban", + "name": "Urban Rubble" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "237", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_hy_varicamo_urban_light.png" + }, + { + "id": "skin-66628", + "name": "Desert Eagle | Heirloom", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_engraved_deagle", + "name": "Heirloom" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "273", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_engraved_deagle_light.png" + }, + { + "id": "skin-66720", + "name": "Desert Eagle | Meteorite", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_crystallized_dark", + "name": "Meteorite" + }, + "min_float": 0, + "max_float": 0.18, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "296", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_crystallized_dark_light.png" + }, + { + "id": "skin-66848", + "name": "Desert Eagle | Hand Cannon", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_handcannon", + "name": "Hand Cannon" + }, + "min_float": 0.01, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "328", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_handcannon_light.png" + }, + { + "id": "skin-66924", + "name": "Desert Eagle | Pilot", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_pilot_deagle", + "name": "Pilot" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "347", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_pilot_deagle_light.png" + }, + { + "id": "skin-66940", + "name": "Desert Eagle | Conspiracy", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_deagle_aureus", + "name": "Conspiracy" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "351", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deagle_aureus_light.png" + }, + { + "id": "skin-67124", + "name": "Desert Eagle | Naga", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_deagle_naga", + "name": "Naga" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "397", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_deagle_naga_light.png" + }, + { + "id": "skin-67236", + "name": "Desert Eagle | Bronze Deco", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_bronze_sparkle", + "name": "Bronze Deco" + }, + "min_float": 0, + "max_float": 0.46, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "425", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_bronze_sparkle_light.png" + }, + { + "id": "skin-67408", + "name": "Desert Eagle | Midnight Storm", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_seastorm", + "name": "Midnight Storm" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "468", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_seastorm_light.png" + }, + { + "id": "skin-67412", + "name": "Desert Eagle | Sunset Storm 壱", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_seastorm_blood", + "name": "Sunset Storm 壱" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "469", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_seastorm_blood_light.png" + }, + { + "id": "skin-67416", + "name": "Desert Eagle | Sunset Storm 弐", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_seastorm_shojo", + "name": "Sunset Storm 弐" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "470", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_seastorm_shojo_light.png" + }, + { + "id": "skin-67572", + "name": "Desert Eagle | Corinthian", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_deagle_corinthian", + "name": "Corinthian" + }, + "min_float": 0, + "max_float": 0.44, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "509", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_deagle_corinthian_light.png" + }, + { + "id": "skin-67644", + "name": "Desert Eagle | Kumicho Dragon", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_deserteagle_kumichodragon", + "name": "Kumicho Dragon" + }, + "min_float": 0, + "max_float": 0.76, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "527", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_light.png" + }, + { + "id": "skin-67948", + "name": "Desert Eagle | Directive", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_desert_eagle_constable", + "name": "Directive" + }, + "min_float": 0.06, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "603", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_aq_desert_eagle_constable_light.png" + }, + { + "id": "skin-68116", + "name": "Desert Eagle | Oxide Blaze", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_desert_eagle_corroden", + "name": "Oxide Blaze" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "645", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_desert_eagle_corroden_light.png" + }, + { + "id": "skin-68380", + "name": "Desert Eagle | Code Red", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_deagle_aggressor", + "name": "Code Red" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "711", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_aggressor_light.png" + }, + { + "id": "skin-68564", + "name": "Desert Eagle | Emerald Jörmungandr", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_jorm_green", + "name": "Emerald Jörmungandr" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "757", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_jorm_green_light.png" + }, + { + "id": "skin-68592", + "name": "Desert Eagle | Fennec Fox", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_deagle_fennec", + "name": "Fennec Fox" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "764", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_fennec_light.png" + }, + { + "id": "skin-68756", + "name": "Desert Eagle | Mecha Industries", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_deagle_mecha", + "name": "Mecha Industries" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "805", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_mecha_light.png" + }, + { + "id": "skin-68900", + "name": "Desert Eagle | Light Rail", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_deagle_exo", + "name": "Light Rail" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "841", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_gs_deagle_exo_light.png" + }, + { + "id": "skin-69316", + "name": "Desert Eagle | Blue Ply", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_deagle_replica", + "name": "Blue Ply" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "945", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deagle_replica_light.png" + }, + { + "id": "skin-69384", + "name": "Desert Eagle | Printstream", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_deag_printstream", + "name": "Printstream" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "962", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deag_printstream_light.png" + }, + { + "id": "skin-69504", + "name": "Desert Eagle | The Bronze", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_numbers_bronze", + "name": "The Bronze" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "992", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_numbers_bronze_light.png" + }, + { + "id": "skin-69560", + "name": "Desert Eagle | Night Heist", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_heist_plans_purple", + "name": "Night Heist" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1006", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_am_heist_plans_purple_light.png" + }, + { + "id": "skin-69736", + "name": "Desert Eagle | Trigger Discipline", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_deag_trigger_discipline", + "name": "Trigger Discipline" + }, + "min_float": 0, + "max_float": 0.97, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1050", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deag_trigger_discipline_light.png" + }, + { + "id": "skin-69760", + "name": "Desert Eagle | Sputnik", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_spacerace_blue", + "name": "Sputnik" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1056", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_sp_spacerace_blue_light.png" + }, + { + "id": "skin-69896", + "name": "Desert Eagle | Ocean Drive", + "description": "As expensive as it is powerful, the Desert Eagle is an iconic pistol that is difficult to master but surprisingly accurate at long range.", + "weapon": { + "id": "weapon_deagle", + "name": "Desert Eagle" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_deagle_kitch", + "name": "Ocean Drive" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1090", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_deagle_cu_deagle_kitch_light.png" + }, + { + "id": "skin-131184", + "name": "Dual Berettas | Anodized Navy", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "an_navy", + "name": "Anodized Navy" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "28", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-inferno", + "name": "The Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno.png" + } + ], + "crates": [ + { + "id": "crate-4023", + "name": "ESL One Cologne 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png" + }, + { + "id": "crate-4032", + "name": "DreamHack 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png" + }, + { + "id": "crate-4080", + "name": "ESL One Katowice 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png" + }, + { + "id": "crate-4133", + "name": "ESL One Cologne 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png" + }, + { + "id": "crate-4178", + "name": "DreamHack Cluj-Napoca 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png" + }, + { + "id": "crate-4227", + "name": "MLG Columbus 2016 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_inferno.bc1ef2fd8a91d14c6c2e7e2a444e2c05feb4956e.png" + }, + { + "id": "crate-4396", + "name": "Krakow 2017 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_inferno.740191615458fa81ee37a4f374220e5dd3ad91ea.png" + }, + { + "id": "crate-4463", + "name": "Boston 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_inferno.ebe33e799b076d3842b02bdddc98b783ea0f5ce4.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_an_navy_light.png" + }, + { + "id": "skin-131244", + "name": "Dual Berettas | Stained", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_aq_forced_light.png" + }, + { + "id": "skin-131256", + "name": "Dual Berettas | Contractor", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_pmc", + "name": "Contractor" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "46", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_pmc_light.png" + }, + { + "id": "skin-131260", + "name": "Dual Berettas | Colony", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_space_marine", + "name": "Colony" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "47", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_space_marine_light.png" + }, + { + "id": "skin-131684", + "name": "Dual Berettas | Demolition", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_tangerine", + "name": "Demolition" + }, + "min_float": 0.26, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "153", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo", + "name": "The Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo.png" + } + ], + "crates": [ + { + "id": "crate-4666", + "name": "Berlin 2019 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_vertigo.764d7a1f455a32f6f28561dc22cbf835def7b481.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_tangerine_light.png" + }, + { + "id": "skin-131832", + "name": "Dual Berettas | Black Limba", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_season_elites_bravo", + "name": "Black Limba" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "190", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_season_elites_bravo_light.png" + }, + { + "id": "skin-131952", + "name": "Dual Berettas | Hemoglobin", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ossify_red", + "name": "Hemoglobin" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "220", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_am_ossify_red_light.png" + }, + { + "id": "skin-132068", + "name": "Dual Berettas | Cobalt Quartz", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_crystallized_blue", + "name": "Cobalt Quartz" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "249", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_am_crystallized_blue_light.png" + }, + { + "id": "skin-132116", + "name": "Dual Berettas | Marina", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_marina_sunrise", + "name": "Marina" + }, + "min_float": 0.05, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "261", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_marina_sunrise_light.png" + }, + { + "id": "skin-132176", + "name": "Dual Berettas | Panther", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_panther", + "name": "Panther" + }, + "min_float": 0, + "max_float": 0.58, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "276", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_so_panther_light.png" + }, + { + "id": "skin-132300", + "name": "Dual Berettas | Retribution", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_retribution", + "name": "Retribution" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "307", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [], + "special_notes": [ + { + "source": "https://steamcommunity.com/games/CSGO/announcements/detail/1751086783896069815", + "text": "It was removed because one of its creators was also involved with the M4A4 Howl art theft. This is no longer obtainable from the Huntsman Weapon Case, but remains part of The Huntsman Collection and still works with trade-up contracts." + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_retribution_light.png" + }, + { + "id": "skin-132392", + "name": "Dual Berettas | Briar", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_vines", + "name": "Briar" + }, + "min_float": 0, + "max_float": 0.22, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "330", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_vines_light.png" + }, + { + "id": "skin-132656", + "name": "Dual Berettas | Urban Shock", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_elites_urbanstorm", + "name": "Urban Shock" + }, + "min_float": 0, + "max_float": 0.47, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "396", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_elites_urbanstorm_light.png" + }, + { + "id": "skin-132860", + "name": "Dual Berettas | Duelist", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_mother_of_pearl_elite", + "name": "Duelist" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "447", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_mother_of_pearl_elite_light.png" + }, + { + "id": "skin-132872", + "name": "Dual Berettas | Moon in Libra", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_zodiac1", + "name": "Moon in Libra" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "450", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_zodiac1_light.png" + }, + { + "id": "skin-132884", + "name": "Dual Berettas | Emerald", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "an_emerald", + "name": "Emerald" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "453", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_an_emerald_light.png" + }, + { + "id": "skin-133036", + "name": "Dual Berettas | Dualing Dragons", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_dualberretta_dragons", + "name": "Dualing Dragons" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "491", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_dualberretta_dragons_light.png" + }, + { + "id": "skin-133184", + "name": "Dual Berettas | Cartel", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_dualberettas_cartel", + "name": "Cartel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "528", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_aq_dualberettas_cartel_light.png" + }, + { + "id": "skin-133248", + "name": "Dual Berettas | Ventilators", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_dualberettas_ventilators", + "name": "Ventilators" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "544", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dualberettas_ventilators_light.png" + }, + { + "id": "skin-133572", + "name": "Dual Berettas | Royal Consorts", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_dual_berettas_golden_venice", + "name": "Royal Consorts" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "625", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_berettas_golden_venice_light.png" + }, + { + "id": "skin-133704", + "name": "Dual Berettas | Cobra Strike", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_dualberettas_cobra", + "name": "Cobra Strike" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "658", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dualberettas_cobra_light.png" + }, + { + "id": "skin-133912", + "name": "Dual Berettas | Shred", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_elites_winter_raider", + "name": "Shred" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "710", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_sp_elites_winter_raider_light.png" + }, + { + "id": "skin-134060", + "name": "Dual Berettas | Twin Turbo", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_dual_elites_rally", + "name": "Twin Turbo" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "747", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_dual_elites_rally_light.png" + }, + { + "id": "skin-134368", + "name": "Dual Berettas | Drift Wood", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_dry_wood", + "name": "Drift Wood" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "824", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_sp_dry_wood_light.png" + }, + { + "id": "skin-134512", + "name": "Dual Berettas | Pyre", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_gelpen_dark", + "name": "Pyre" + }, + "min_float": 0.06, + "max_float": 0.55, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "860", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_gelpen_dark_light.png" + }, + { + "id": "skin-134652", + "name": "Dual Berettas | Balance", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_dual_elites_rose", + "name": "Balance" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "895", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_elites_rose_light.png" + }, + { + "id": "skin-134684", + "name": "Dual Berettas | Elite 1.6", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_dual_elites_classic", + "name": "Elite 1.6" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "903", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_elites_classic_light.png" + }, + { + "id": "skin-134984", + "name": "Dual Berettas | Dezastre", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_dual_elites_dezastre", + "name": "Dezastre" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "978", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_elites_dezastre_light.png" + }, + { + "id": "skin-135064", + "name": "Dual Berettas | Switch Board", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_numbers_green", + "name": "Switch Board" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "998", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_hy_numbers_green_light.png" + }, + { + "id": "skin-135092", + "name": "Dual Berettas | Heist", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_heist_plans_green", + "name": "Heist" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1005", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_am_heist_plans_green_light.png" + }, + { + "id": "skin-135416", + "name": "Dual Berettas | Oil Change", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_engine_dirty", + "name": "Oil Change" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1086", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_sp_engine_dirty_light.png" + }, + { + "id": "skin-135436", + "name": "Dual Berettas | Tread", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_dual_berettas_tread", + "name": "Tread" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1091", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_gs_dual_berettas_tread_light.png" + }, + { + "id": "skin-135576", + "name": "Dual Berettas | Melondrama", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_elites_beware", + "name": "Melondrama" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1126", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_elites_beware_light.png" + }, + { + "id": "skin-135696", + "name": "Dual Berettas | Flora Carnivora", + "description": "Firing two large-mag Berettas at once will lower accuracy and increase load times. On the bright side, you'll get to fire two large-mag Berettas at once.", + "weapon": { + "id": "weapon_elite", + "name": "Dual Berettas" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_dual_elites_evil_flora", + "name": "Flora Carnivora" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1156", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_elite_cu_dual_elites_evil_flora_light.png" + }, + { + "id": "skin-196620", + "name": "Five-SeveN | Candy Apple", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_red", + "name": "Candy Apple" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "3", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-assault", + "name": "The Assault Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_assault.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_red_light.png" + }, + { + "id": "skin-196784", + "name": "Five-SeveN | Case Hardened", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aq_oiled_light.png" + }, + { + "id": "skin-196792", + "name": "Five-SeveN | Contractor", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_pmc", + "name": "Contractor" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "46", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_pmc_light.png" + }, + { + "id": "skin-196920", + "name": "Five-SeveN | Forest Night", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_forest_night", + "name": "Forest Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "78", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_forest_night_light.png" + }, + { + "id": "skin-197172", + "name": "Five-SeveN | Orange Peel", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_tape_orange", + "name": "Orange Peel" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "141", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_sp_tape_orange_light.png" + }, + { + "id": "skin-197212", + "name": "Five-SeveN | Jungle", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_jungle", + "name": "Jungle" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "151", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-aztec", + "name": "The Aztec Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_aztec.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_jungle_light.png" + }, + { + "id": "skin-197448", + "name": "Five-SeveN | Anodized Gunmetal", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "an_gunmetal_bravo", + "name": "Anodized Gunmetal" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "210", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_an_gunmetal_bravo_light.png" + }, + { + "id": "skin-197500", + "name": "Five-SeveN | Nightshade", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_flowers", + "name": "Nightshade" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "223", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_flowers_light.png" + }, + { + "id": "skin-197616", + "name": "Five-SeveN | Silver Quartz", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_crystallized_silver", + "name": "Silver Quartz" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "252", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_am_crystallized_silver_light.png" + }, + { + "id": "skin-197624", + "name": "Five-SeveN | Nitro", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_orange_accents", + "name": "Nitro" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "254", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_orange_accents_light.png" + }, + { + "id": "skin-197668", + "name": "Five-SeveN | Kami", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_kami", + "name": "Kami" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "265", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_kami_light.png" + }, + { + "id": "skin-197704", + "name": "Five-SeveN | Copper Galaxy", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_copper_flecks", + "name": "Copper Galaxy" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "274", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_am_copper_flecks_light.png" + }, + { + "id": "skin-198016", + "name": "Five-SeveN | Fowl Play", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_57_feathers", + "name": "Fowl Play" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "352", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aq_57_feathers_light.png" + }, + { + "id": "skin-198116", + "name": "Five-SeveN | Hot Shot", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_grey_nuclear_orange_five_seven", + "name": "Hot Shot" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "377", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_so_grey_nuclear_orange_five_seven_light.png" + }, + { + "id": "skin-198156", + "name": "Five-SeveN | Urban Hazard", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_urban_hazard", + "name": "Urban Hazard" + }, + "min_float": 0, + "max_float": 0.25, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "387", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_urban_hazard_light.png" + }, + { + "id": "skin-198316", + "name": "Five-SeveN | Monkey Business", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_banana", + "name": "Monkey Business" + }, + "min_float": 0.1, + "max_float": 0.9, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "427", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_banana_light.png" + }, + { + "id": "skin-198464", + "name": "Five-SeveN | Neon Kimono", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_kimono_diamonds", + "name": "Neon Kimono" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "464", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_kimono_diamonds_light.png" + }, + { + "id": "skin-198648", + "name": "Five-SeveN | Retrobution", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_retrobution", + "name": "Retrobution" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "510", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_retrobution_light.png" + }, + { + "id": "skin-198728", + "name": "Five-SeveN | Triumvirate", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_augmented", + "name": "Triumvirate" + }, + "min_float": 0, + "max_float": 0.61, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "530", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_light.png" + }, + { + "id": "skin-198948", + "name": "Five-SeveN | Violent Daimyo", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_five_seven_daimyo", + "name": "Violent Daimyo" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "585", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_five_seven_daimyo_light.png" + }, + { + "id": "skin-199028", + "name": "Five-SeveN | Scumbria", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_five_seven_scumbria", + "name": "Scumbria" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "605", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aq_five_seven_scumbria_light.png" + }, + { + "id": "skin-199192", + "name": "Five-SeveN | Capillary", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_vein", + "name": "Capillary" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "646", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_vein_light.png" + }, + { + "id": "skin-199248", + "name": "Five-SeveN | Hyper Beast", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_hyperbeast", + "name": "Hyper Beast" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "660", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_hyperbeast_light.png" + }, + { + "id": "skin-199380", + "name": "Five-SeveN | Flame Test", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_fiveseven_hot_rod_violet", + "name": "Flame Test" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "693", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_gs_fiveseven_hot_rod_violet_light.png" + }, + { + "id": "skin-199524", + "name": "Five-SeveN | Crimson Blossom", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_bud_red", + "name": "Crimson Blossom" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "729", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_bud_red_light.png" + }, + { + "id": "skin-199744", + "name": "Five-SeveN | Coolant", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_ducts_green", + "name": "Coolant" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "784", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_hy_ducts_green_light.png" + }, + { + "id": "skin-199956", + "name": "Five-SeveN | Angry Mob", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_five_seven_angry", + "name": "Angry Mob" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "837", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_five_seven_angry_light.png" + }, + { + "id": "skin-200232", + "name": "Five-SeveN | Buddy", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_gsg9", + "name": "Buddy" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "906", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_gsg9_light.png" + }, + { + "id": "skin-200336", + "name": "Five-SeveN | Withered Vine", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_moro_textile_purple_yellow", + "name": "Withered Vine" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "932", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_sp_moro_textile_purple_yellow_light.png" + }, + { + "id": "skin-200524", + "name": "Five-SeveN | Fairy Tale", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_five_seven_diary", + "name": "Fairy Tale" + }, + "min_float": 0.02, + "max_float": 0.9, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "979", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_five_seven_diary_light.png" + }, + { + "id": "skin-200616", + "name": "Five-SeveN | Berries And Cherries", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_fade_red_blue", + "name": "Berries And Cherries" + }, + "min_float": 0, + "max_float": 0.1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1002", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_aa_fade_red_blue_light.png" + }, + { + "id": "skin-200936", + "name": "Five-SeveN | Fall Hazard", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_vertigo_fiveseven", + "name": "Fall Hazard" + }, + "min_float": 0.01, + "max_float": 0.52, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1082", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_vertigo_fiveseven_light.png" + }, + { + "id": "skin-200980", + "name": "Five-SeveN | Boost Protocol", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_five_seven_efusion", + "name": "Boost Protocol" + }, + "min_float": 0, + "max_float": 0.41, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1093", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_gs_five_seven_efusion_light.png" + }, + { + "id": "skin-201120", + "name": "Five-SeveN | Scrawl", + "description": "Highly accurate and armor-piercing, the pricy Five-Seven is a slow-loader that compensates with a generous 20-round magazine and forgiving recoil.", + "weapon": { + "id": "weapon_fiveseven", + "name": "Five-SeveN" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_fiveseven_alpha_omega", + "name": "Scrawl" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1128", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_fiveseven_cu_fiveseven_alpha_omega_light.png" + }, + { + "id": "skin-262152", + "name": "Glock-18 | Groundwater", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_olive", + "name": "Groundwater" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "2", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_olive_light.png" + }, + { + "id": "skin-262156", + "name": "Glock-18 | Candy Apple", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_red", + "name": "Candy Apple" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "3", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_red_light.png" + }, + { + "id": "skin-262296", + "name": "Glock-18 | Fade", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-assault", + "name": "The Assault Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_assault.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aa_fade_light.png" + }, + { + "id": "skin-262304", + "name": "Glock-18 | Night", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_night_light.png" + }, + { + "id": "skin-262336", + "name": "Glock-18 | Dragon Tattoo", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_dragon_glock", + "name": "Dragon Tattoo" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "48", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_dragon_glock_light.png" + }, + { + "id": "skin-262480", + "name": "Glock-18 | Pink DDPAT", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_ddpat_pink", + "name": "Pink DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "84", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_ddpat_pink_light.png" + }, + { + "id": "skin-262780", + "name": "Glock-18 | Brass", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_brass", + "name": "Brass" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "159", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_brass_light.png" + }, + { + "id": "skin-262976", + "name": "Glock-18 | Sand Dune", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_sand_bravo", + "name": "Sand Dune" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "208", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_so_sand_bravo_light.png" + }, + { + "id": "skin-263064", + "name": "Glock-18 | Steel Disruption", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ddpatdense_silver", + "name": "Steel Disruption" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "230", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_ddpatdense_silver_light.png" + }, + { + "id": "skin-263256", + "name": "Glock-18 | Blue Fissure", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_craquelure", + "name": "Blue Fissure" + }, + "min_float": 0.06, + "max_float": 0.58, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "278", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_craquelure_light.png" + }, + { + "id": "skin-263316", + "name": "Glock-18 | Death Rattle", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_nerodia", + "name": "Death Rattle" + }, + "min_float": 0.08, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "293", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_nerodia_light.png" + }, + { + "id": "skin-263556", + "name": "Glock-18 | Water Elemental", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock-liquescent", + "name": "Water Elemental" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "353", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock-liquescent_light.png" + }, + { + "id": "skin-263612", + "name": "Glock-18 | Reactor", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_nuclear_pattern1_glock", + "name": "Reactor" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "367", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_nuclear_pattern1_glock_light.png" + }, + { + "id": "skin-263668", + "name": "Glock-18 | Grinder", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_glock_coiled", + "name": "Grinder" + }, + "min_float": 0.02, + "max_float": 0.25, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "381", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_glock_coiled_light.png" + }, + { + "id": "skin-263740", + "name": "Glock-18 | Catacombs", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_deathtoll", + "name": "Catacombs" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "399", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_deathtoll_light.png" + }, + { + "id": "skin-263892", + "name": "Glock-18 | Twilight Galaxy", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_aqua_flecks", + "name": "Twilight Galaxy" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "437", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_aqua_flecks_light.png" + }, + { + "id": "skin-264060", + "name": "Glock-18 | Bunsen Burner", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_glock18_flames_blue", + "name": "Bunsen Burner" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "479", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_glock18_flames_blue_light.png" + }, + { + "id": "skin-264124", + "name": "Glock-18 | Wraiths", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_glock18_wrathys", + "name": "Wraiths" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "495", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock18_wrathys_light.png" + }, + { + "id": "skin-264272", + "name": "Glock-18 | Royal Legion", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_glock18_award", + "name": "Royal Legion" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "532", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock18_award_light.png" + }, + { + "id": "skin-264488", + "name": "Glock-18 | Wasteland Rebel", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_wasteland_rebel", + "name": "Wasteland Rebel" + }, + "min_float": 0, + "max_float": 0.54, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "586", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_wasteland_rebel_light.png" + }, + { + "id": "skin-264572", + "name": "Glock-18 | Weasel", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock18_weasel", + "name": "Weasel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "607", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock18_weasel_light.png" + }, + { + "id": "skin-264636", + "name": "Glock-18 | Ironwork", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_glock_dark-fall", + "name": "Ironwork" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "623", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aq_glock_dark-fall_light.png" + }, + { + "id": "skin-264864", + "name": "Glock-18 | Off World", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_indigo", + "name": "Off World" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "680", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_indigo_light.png" + }, + { + "id": "skin-264920", + "name": "Glock-18 | Moonrise", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_glock_18_urban_moon_fever", + "name": "Moonrise" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "694", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aa_glock_18_urban_moon_fever_light.png" + }, + { + "id": "skin-264996", + "name": "Glock-18 | Warhawk", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_glock_thunder_dust", + "name": "Warhawk" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "713", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock_thunder_dust_light.png" + }, + { + "id": "skin-265072", + "name": "Glock-18 | Synth Leaf", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_leaf_blue", + "name": "Synth Leaf" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "732", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_hy_leaf_blue_light.png" + }, + { + "id": "skin-265300", + "name": "Glock-18 | Nuclear Garden", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_nuclear_skulls_green", + "name": "Nuclear Garden" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "789", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_nuclear_skulls_green_light.png" + }, + { + "id": "skin-265340", + "name": "Glock-18 | High Beam", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_vertigo_blue", + "name": "High Beam" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "799", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_aa_vertigo_blue_light.png" + }, + { + "id": "skin-265376", + "name": "Glock-18 | Oxide Blaze", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock18_corroden", + "name": "Oxide Blaze" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "808", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock18_corroden_light.png" + }, + { + "id": "skin-265816", + "name": "Glock-18 | Sacrifice", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_hero", + "name": "Sacrifice" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "918", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_hero_light.png" + }, + { + "id": "skin-265972", + "name": "Glock-18 | Bullet Queen", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock18_warmaiden", + "name": "Bullet Queen" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "957", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock18_warmaiden_light.png" + }, + { + "id": "skin-265996", + "name": "Glock-18 | Vogue", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_eyecontact", + "name": "Vogue" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "963", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_eyecontact_light.png" + }, + { + "id": "skin-266096", + "name": "Glock-18 | Neo-Noir", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_noir", + "name": "Neo-Noir" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "988", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_noir_light.png" + }, + { + "id": "skin-266208", + "name": "Glock-18 | Franklin", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_money_glock", + "name": "Franklin" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1016", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_money_glock_light.png" + }, + { + "id": "skin-266300", + "name": "Glock-18 | Clear Polymer", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_glock_polymer", + "name": "Clear Polymer" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1039", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock_polymer_light.png" + }, + { + "id": "skin-266460", + "name": "Glock-18 | Red Tire", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_tire_tread_red", + "name": "Red Tire" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1079", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_sp_tire_tread_red_light.png" + }, + { + "id": "skin-266544", + "name": "Glock-18 | Snack Attack", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_snackattack", + "name": "Snack Attack" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1100", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_snackattack_light.png" + }, + { + "id": "skin-266620", + "name": "Glock-18 | Gamma Doppler", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_emerald_marbleized_glock", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1119", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_emerald_marbleized_glock_light.png" + }, + { + "id": "skin-266624", + "name": "Glock-18 | Gamma Doppler", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_gamma_doppler_phase1_glock", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1120", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase1_glock_light.png" + }, + { + "id": "skin-266628", + "name": "Glock-18 | Gamma Doppler", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_gamma_doppler_phase2_glock", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1121", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase2_glock_light.png" + }, + { + "id": "skin-266632", + "name": "Glock-18 | Gamma Doppler", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_gamma_doppler_phase3_glock", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1122", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase3_glock_light.png" + }, + { + "id": "skin-266636", + "name": "Glock-18 | Gamma Doppler", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_gamma_doppler_phase4_glock", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1123", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_am_gamma_doppler_phase4_glock_light.png" + }, + { + "id": "skin-266776", + "name": "Glock-18 | Winterized", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_glock_elite_camo", + "name": "Winterized" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1158", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_gs_glock_elite_camo_light.png" + }, + { + "id": "skin-267052", + "name": "Glock-18 | Umbral Rabbit", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_moon_rabbit", + "name": "Umbral Rabbit" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1227", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_moon_rabbit_light.png" + }, + { + "id": "skin-267104", + "name": "Glock-18 | Ramese's Reach", + "description": "The Glock 18 is a serviceable first-round pistol that works best against unarmored opponents and is capable of firing three-round bursts.", + "weapon": { + "id": "weapon_glock", + "name": "Glock-18" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_glock_ramzes", + "name": "Ramese's Reach" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1240", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_glock_cu_glock_ramzes_light.png" + }, + { + "id": "skin-458808", + "name": "AK-47 | Red Laminate", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ak47lam", + "name": "Red Laminate" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "14", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_light.png" + }, + { + "id": "skin-458928", + "name": "AK-47 | Case Hardened", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_aq_oiled_light.png" + }, + { + "id": "skin-459040", + "name": "AK-47 | Safari Mesh", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_sp_mesh_tan_light.png" + }, + { + "id": "skin-459240", + "name": "AK-47 | Jungle Spray", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_spray_jungle", + "name": "Jungle Spray" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "122", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-aztec", + "name": "The Aztec Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_aztec.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_sp_spray_jungle_light.png" + }, + { + "id": "skin-459432", + "name": "AK-47 | Predator", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_zebracam", + "name": "Predator" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "170", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_sp_zebracam_light.png" + }, + { + "id": "skin-459440", + "name": "AK-47 | Black Laminate", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ak47lam_bw", + "name": "Black Laminate" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "172", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo", + "name": "The Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo.png" + } + ], + "crates": [ + { + "id": "crate-4666", + "name": "Berlin 2019 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_vertigo.764d7a1f455a32f6f28561dc22cbf835def7b481.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_bw_light.png" + }, + { + "id": "skin-459472", + "name": "AK-47 | Fire Serpent", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_fireserpent_ak47_bravo", + "name": "Fire Serpent" + }, + "min_float": 0.06, + "max_float": 0.76, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "180", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_fireserpent_ak47_bravo_light.png" + }, + { + "id": "skin-459656", + "name": "AK-47 | Blue Laminate", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ak47lam_blue", + "name": "Blue Laminate" + }, + "min_float": 0.02, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "226", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_blue_light.png" + }, + { + "id": "skin-459880", + "name": "AK-47 | Redline", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_cobra", + "name": "Redline" + }, + "min_float": 0.1, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "282", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_cobra_light.png" + }, + { + "id": "skin-459952", + "name": "AK-47 | Emerald Pinstripe", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_pinstripe_ak47", + "name": "Emerald Pinstripe" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "300", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_pinstripe_ak47_light.png" + }, + { + "id": "skin-459960", + "name": "AK-47 | Vulcan", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_rubber", + "name": "Vulcan" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "302", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_rubber_light.png" + }, + { + "id": "skin-460016", + "name": "AK-47 | Jaguar", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_panther_ak47", + "name": "Jaguar" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "316", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_panther_ak47_light.png" + }, + { + "id": "skin-460112", + "name": "AK-47 | Jet Set", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_well_traveled_ak47", + "name": "Jet Set" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "340", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_well_traveled_ak47_light.png" + }, + { + "id": "skin-460116", + "name": "AK-47 | First Class", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_green_leather_ak47", + "name": "First Class" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "341", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_green_leather_ak47_light.png" + }, + { + "id": "skin-460272", + "name": "AK-47 | Wasteland Rebel", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_tribute_ak47", + "name": "Wasteland Rebel" + }, + "min_float": 0.05, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "380", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_tribute_ak47_light.png" + }, + { + "id": "skin-460328", + "name": "AK-47 | Cartel", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_ak47_cartel", + "name": "Cartel" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "394", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_aq_ak47_cartel_light.png" + }, + { + "id": "skin-460440", + "name": "AK-47 | Elite Build", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_mastery", + "name": "Elite Build" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "422", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_mastery_light.png" + }, + { + "id": "skin-460576", + "name": "AK-47 | Hydroponic", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_bamboo_jungle", + "name": "Hydroponic" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "456", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_am_bamboo_jungle_light.png" + }, + { + "id": "skin-460648", + "name": "AK-47 | Aquamarine Revenge", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_courage_alt", + "name": "Aquamarine Revenge" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "474", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_courage_alt_light.png" + }, + { + "id": "skin-460712", + "name": "AK-47 | Frontside Misty", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_winter_sport", + "name": "Frontside Misty" + }, + "min_float": 0.02, + "max_float": 0.87, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "490", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_winter_sport_light.png" + }, + { + "id": "skin-460776", + "name": "AK-47 | Point Disarray", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_point_disarray", + "name": "Point Disarray" + }, + "min_float": 0, + "max_float": 0.67, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "506", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_point_disarray_light.png" + }, + { + "id": "skin-460848", + "name": "AK-47 | Fuel Injector", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_supercharged", + "name": "Fuel Injector" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "524", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_supercharged_light.png" + }, + { + "id": "skin-461152", + "name": "AK-47 | Neon Revolution", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_anarchy", + "name": "Neon Revolution" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "600", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_anarchy_light.png" + }, + { + "id": "skin-461308", + "name": "AK-47 | Bloodsport", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_bloodsport", + "name": "Bloodsport" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "639", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_bloodsport_light.png" + }, + { + "id": "skin-461376", + "name": "AK-47 | Orbit Mk01", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak_colony01_red", + "name": "Orbit Mk01" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "656", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak_colony01_red_light.png" + }, + { + "id": "skin-461452", + "name": "AK-47 | The Empress", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_empress", + "name": "The Empress" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "675", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_empress_light.png" + }, + { + "id": "skin-461580", + "name": "AK-47 | Neon Rider", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak_neon_rider", + "name": "Neon Rider" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "707", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_neon_rider_light.png" + }, + { + "id": "skin-461648", + "name": "AK-47 | Wild Lotus", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak_island_floral", + "name": "Wild Lotus" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "724", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_island_floral_light.png" + }, + { + "id": "skin-461732", + "name": "AK-47 | Baroque Purple", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_veneto_purple", + "name": "Baroque Purple" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "745", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_veneto_purple_light.png" + }, + { + "id": "skin-461932", + "name": "AK-47 | Safety Net", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_mesh_safetyorange", + "name": "Safety Net" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "795", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_mesh_safetyorange_light.png" + }, + { + "id": "skin-461956", + "name": "AK-47 | Asiimov", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_asiimov", + "name": "Asiimov" + }, + "min_float": 0.05, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "801", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_asiimov_light.png" + }, + { + "id": "skin-462096", + "name": "AK-47 | Uncharted", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_aztec", + "name": "Uncharted" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "836", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_aztec_light.png" + }, + { + "id": "skin-462292", + "name": "AK-47 | Rat Rod", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_nibbler", + "name": "Rat Rod" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "885", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_nibbler_light.png" + }, + { + "id": "skin-462436", + "name": "AK-47 | Gold Arabesque", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_gold_arabesque", + "name": "Gold Arabesque" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "921", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_gold_arabesque_light.png" + }, + { + "id": "skin-462516", + "name": "AK-47 | Phantom Disruptor", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak-47_phantom_disruptor", + "name": "Phantom Disruptor" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "941", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak-47_phantom_disruptor_light.png" + }, + { + "id": "skin-462588", + "name": "AK-47 | Legion of Anubis", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_anubis", + "name": "Legion of Anubis" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "959", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_anubis_light.png" + }, + { + "id": "skin-462768", + "name": "AK-47 | X-Ray", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak_xray", + "name": "X-Ray" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1004", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_xray_light.png" + }, + { + "id": "skin-462824", + "name": "AK-47 | Panthera onca", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak_jaguar", + "name": "Panthera onca" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1018", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_jaguar_light.png" + }, + { + "id": "skin-462892", + "name": "AK-47 | Slate", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_professional", + "name": "Slate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1035", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_professional_light.png" + }, + { + "id": "skin-463032", + "name": "AK-47 | Green Laminate", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ak47lam_green", + "name": "Green Laminate" + }, + "min_float": 0.02, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1070", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_hy_ak47lam_green_light.png" + }, + { + "id": "skin-463100", + "name": "AK-47 | Leet Museo", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_abstract", + "name": "Leet Museo" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1087", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_abstract_light.png" + }, + { + "id": "skin-463316", + "name": "AK-47 | Nightwish", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_nightwish", + "name": "Nightwish" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1141", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_nightwish_light.png" + }, + { + "id": "skin-463324", + "name": "AK-47 | Ice Coaled", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak47_cogthings", + "name": "Ice Coaled" + }, + "min_float": 0, + "max_float": 0.77, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak47_cogthings_light.png" + }, + { + "id": "skin-463636", + "name": "AK-47 | Head Shot", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ak_head_shot_holo", + "name": "Head Shot" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1221", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_cu_ak_head_shot_holo_light.png" + }, + { + "id": "skin-463704", + "name": "AK-47 | Steel Delta", + "description": "Powerful and reliable, the AK-47 is one of the most popular assault rifles in the world. It is most deadly in short, controlled bursts of fire.", + "weapon": { + "id": "weapon_ak47", + "name": "AK-47" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ak47_strone", + "name": "Steel Delta" + }, + "min_float": 0, + "max_float": 0.73, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1238", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ak47_gs_ak47_strone_light.png" + }, + { + "id": "skin-524324", + "name": "AUG | Bengal Tiger", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_tiger", + "name": "Bengal Tiger" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "9", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_tiger_light.png" + }, + { + "id": "skin-524328", + "name": "AUG | Copperhead", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_copperhead", + "name": "Copperhead" + }, + "min_float": 0.12, + "max_float": 0.38, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_copperhead_light.png" + }, + { + "id": "skin-524420", + "name": "AUG | Hot Rod", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "an_red", + "name": "Hot Rod" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "33", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-assault", + "name": "The Assault Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_assault.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_an_red_light.png" + }, + { + "id": "skin-524472", + "name": "AUG | Contractor", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_pmc", + "name": "Contractor" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "46", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_so_pmc_light.png" + }, + { + "id": "skin-524476", + "name": "AUG | Colony", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_space_marine", + "name": "Colony" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "47", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_so_space_marine_light.png" + }, + { + "id": "skin-524580", + "name": "AUG | Wings", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_feathers_aug", + "name": "Wings" + }, + "min_float": 0, + "max_float": 0.14, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "73", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_feathers_aug_light.png" + }, + { + "id": "skin-524688", + "name": "AUG | Storm", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_stormfront", + "name": "Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "100", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_so_stormfront_light.png" + }, + { + "id": "skin-524728", + "name": "AUG | Condemned", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_forest_fire", + "name": "Condemned" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "110", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_mesh_forest_fire_light.png" + }, + { + "id": "skin-525076", + "name": "AUG | Anodized Navy", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "an_navy_bravo", + "name": "Anodized Navy" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "197", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_an_navy_bravo_light.png" + }, + { + "id": "skin-525272", + "name": "AUG | Amber Fade", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_fade_metallic", + "name": "Amber Fade" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "246", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_aa_fade_metallic_light.png" + }, + { + "id": "skin-525408", + "name": "AUG | Chameleon", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_aug_chameleonaire", + "name": "Chameleon" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "280", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_chameleonaire_light.png" + }, + { + "id": "skin-525508", + "name": "AUG | Torque", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_aug_progressiv", + "name": "Torque" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "305", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_progressiv_light.png" + }, + { + "id": "skin-525788", + "name": "AUG | Radiation Hazard", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_nukestripe_orange_aug", + "name": "Radiation Hazard" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "375", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_nukestripe_orange_aug_light.png" + }, + { + "id": "skin-526064", + "name": "AUG | Daedalus", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_labyrinth3", + "name": "Daedalus" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "444", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_labyrinth3_light.png" + }, + { + "id": "skin-526108", + "name": "AUG | Akihabara Accept", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_anime_aug", + "name": "Akihabara Accept" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "455", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_anime_aug_light.png" + }, + { + "id": "skin-526316", + "name": "AUG | Ricochet", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_aug_jumble", + "name": "Ricochet" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "507", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_aug_jumble_light.png" + }, + { + "id": "skin-526452", + "name": "AUG | Fleet Flock", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_aug_swallows", + "name": "Fleet Flock" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "541", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_swallows_light.png" + }, + { + "id": "skin-526620", + "name": "AUG | Aristocrat", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_aug_aristocrat", + "name": "Aristocrat" + }, + "min_float": 0, + "max_float": 0.66, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "583", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_aristocrat_light.png" + }, + { + "id": "skin-526692", + "name": "AUG | Syd Mead", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_aug_syd_mead", + "name": "Syd Mead" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "601", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_syd_mead_light.png" + }, + { + "id": "skin-526984", + "name": "AUG | Triqua", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_aug_orange_triangle", + "name": "Triqua" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "674", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_orange_triangle_light.png" + }, + { + "id": "skin-527048", + "name": "AUG | Stymphalian", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_aug_stymphalian_birds", + "name": "Stymphalian" + }, + "min_float": 0, + "max_float": 0.63, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "690", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_stymphalian_birds_light.png" + }, + { + "id": "skin-527120", + "name": "AUG | Amber Slipstream", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_aug_torn_orange", + "name": "Amber Slipstream" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "708", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_aug_torn_orange_light.png" + }, + { + "id": "skin-527196", + "name": "AUG | Midnight Lily", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_bloom_blue", + "name": "Midnight Lily" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "727", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_bloom_blue_light.png" + }, + { + "id": "skin-527248", + "name": "AUG | Navy Murano", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_murano_blue", + "name": "Navy Murano" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "740", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_murano_blue_light.png" + }, + { + "id": "skin-527320", + "name": "AUG | Flame Jörmungandr", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_jorm_orange", + "name": "Flame Jörmungandr" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "758", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_jorm_orange_light.png" + }, + { + "id": "skin-527404", + "name": "AUG | Random Access", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_circuitboard_orange", + "name": "Random Access" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "779", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_circuitboard_orange_light.png" + }, + { + "id": "skin-527464", + "name": "AUG | Sweeper", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_safetyblack", + "name": "Sweeper" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "794", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_sp_mesh_safetyblack_light.png" + }, + { + "id": "skin-527580", + "name": "AUG | Sand Storm", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_aug_sand_storm", + "name": "Sand Storm" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "823", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_sand_storm_light.png" + }, + { + "id": "skin-527668", + "name": "AUG | Momentum", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_aug_momentum", + "name": "Momentum" + }, + "min_float": 0.05, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "845", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_momentum_light.png" + }, + { + "id": "skin-527832", + "name": "AUG | Arctic Wolf", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_aug_whitefang", + "name": "Arctic Wolf" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "886", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_cu_aug_whitefang_light.png" + }, + { + "id": "skin-527940", + "name": "AUG | Death by Puppy", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_aug_death_by_doggy", + "name": "Death by Puppy" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "913", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_aug_death_by_doggy_light.png" + }, + { + "id": "skin-527996", + "name": "AUG | Spalted Wood", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_dry_wood", + "name": "Spalted Wood" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "927", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_dry_wood_light.png" + }, + { + "id": "skin-528056", + "name": "AUG | Tom Cat", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_aug_thunderstorm", + "name": "Tom Cat" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "942", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_thunderstorm_light.png" + }, + { + "id": "skin-528268", + "name": "AUG | Surveillance", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_intelligence_grey", + "name": "Surveillance" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "995", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_intelligence_grey_light.png" + }, + { + "id": "skin-528420", + "name": "AUG | Carved Jade", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_jade", + "name": "Carved Jade" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1033", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_am_jade_light.png" + }, + { + "id": "skin-528640", + "name": "AUG | Plague", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_aug_plague", + "name": "Plague" + }, + "min_float": 0, + "max_float": 0.76, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1088", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_gs_aug_plague_light.png" + }, + { + "id": "skin-529284", + "name": "AUG | Snake Pit", + "description": "Powerful and accurate, the AUG scoped assault rifle compensates for its long reload times with low spread and a high rate of fire.", + "weapon": { + "id": "weapon_aug", + "name": "AUG" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_dune_trap", + "name": "Snake Pit" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1249", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_aug_hy_dune_trap_light.png" + }, + { + "id": "skin-589944", + "name": "AWP | Snake Camo", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_snake", + "name": "Snake Camo" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "30", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_sp_snake_light.png" + }, + { + "id": "skin-590028", + "name": "AWP | Lightning Strike", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_lightning_awp", + "name": "Lightning Strike" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "51", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_lightning_awp_light.png" + }, + { + "id": "skin-590112", + "name": "AWP | Safari Mesh", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_sp_mesh_tan_light.png" + }, + { + "id": "skin-590160", + "name": "AWP | Pink DDPAT", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ddpat_pink", + "name": "Pink DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "84", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_ddpat_pink_light.png" + }, + { + "id": "skin-590520", + "name": "AWP | BOOM", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_blam_simple", + "name": "BOOM" + }, + "min_float": 0.06, + "max_float": 0.28, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "174", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_blam_simple_light.png" + }, + { + "id": "skin-590548", + "name": "AWP | Corticera", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_favela_awp", + "name": "Corticera" + }, + "min_float": 0.06, + "max_float": 0.3, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "181", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_favela_awp_light.png" + }, + { + "id": "skin-590672", + "name": "AWP | Graphite", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_crumple_bravo", + "name": "Graphite" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "212", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_crumple_bravo_light.png" + }, + { + "id": "skin-590732", + "name": "AWP | Electric Hive", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_hive", + "name": "Electric Hive" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "227", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_hive_light.png" + }, + { + "id": "skin-590828", + "name": "AWP | Pit Viper", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_snakeskin", + "name": "Pit Viper" + }, + "min_float": 0.08, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "251", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_snakeskin_light.png" + }, + { + "id": "skin-590860", + "name": "AWP | Redline", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_cobra", + "name": "Redline" + }, + "min_float": 0.1, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "259", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_cobra_light.png" + }, + { + "id": "skin-590940", + "name": "AWP | Asiimov", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_asimov", + "name": "Asiimov" + }, + "min_float": 0.18, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "279", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_asimov_light.png" + }, + { + "id": "skin-591200", + "name": "AWP | Dragon Lore", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_medieval_dragon_awp", + "name": "Dragon Lore" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "344", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_medieval_dragon_awp_light.png" + }, + { + "id": "skin-591404", + "name": "AWP | Man-o'-war", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_awp_glory", + "name": "Man-o'-war" + }, + "min_float": 0.1, + "max_float": 0.2, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "395", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_awp_glory_light.png" + }, + { + "id": "skin-591520", + "name": "AWP | Worm God", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_awp_twine", + "name": "Worm God" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "424", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_aq_awp_twine_light.png" + }, + { + "id": "skin-591608", + "name": "AWP | Medusa", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_medusa_awp", + "name": "Medusa" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "446", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_medusa_awp_light.png" + }, + { + "id": "skin-591628", + "name": "AWP | Sun in Leo", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_zodiac2", + "name": "Sun in Leo" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "451", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_zodiac2_light.png" + }, + { + "id": "skin-591724", + "name": "AWP | Hyper Beast", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_hyper_beast", + "name": "Hyper Beast" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "475", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_hyper_beast_light.png" + }, + { + "id": "skin-591924", + "name": "AWP | Elite Build", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_mastery", + "name": "Elite Build" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "525", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_mastery_light.png" + }, + { + "id": "skin-592160", + "name": "AWP | Phobos", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_phobos", + "name": "Phobos" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "584", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_phobos_light.png" + }, + { + "id": "skin-592384", + "name": "AWP | Fever Dream", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_psychopath", + "name": "Fever Dream" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "640", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_psychopath_light.png" + }, + { + "id": "skin-592472", + "name": "AWP | Oni Taiji", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_hannya", + "name": "Oni Taiji" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "662", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_hannya_light.png" + }, + { + "id": "skin-592588", + "name": "AWP | Mortis", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_death", + "name": "Mortis" + }, + "min_float": 0, + "max_float": 0.64, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "691", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_death_light.png" + }, + { + "id": "skin-592696", + "name": "AWP | PAW", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_awp_pawpaw", + "name": "PAW" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "718", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_awp_pawpaw_light.png" + }, + { + "id": "skin-592768", + "name": "AWP | The Prince", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_enamel", + "name": "The Prince" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "736", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_enamel_light.png" + }, + { + "id": "skin-592848", + "name": "AWP | Gungnir", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_gungnir", + "name": "Gungnir" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "756", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_gungnir_light.png" + }, + { + "id": "skin-592976", + "name": "AWP | Acheron", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_nuclear_skulls_redblue", + "name": "Acheron" + }, + "min_float": 0, + "max_float": 0.83, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "788", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_nuclear_skulls_redblue_light.png" + }, + { + "id": "skin-593036", + "name": "AWP | Neo-Noir", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_neonoir", + "name": "Neo-Noir" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "803", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_neonoir_light.png" + }, + { + "id": "skin-593100", + "name": "AWP | Desert Hydra", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_hydra", + "name": "Desert Hydra" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "819", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_hydra_light.png" + }, + { + "id": "skin-593176", + "name": "AWP | Atheris", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_viper", + "name": "Atheris" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "838", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_viper_light.png" + }, + { + "id": "skin-593372", + "name": "AWP | Containment Breach", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_virus", + "name": "Containment Breach" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "887", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_virus_light.png" + }, + { + "id": "skin-593492", + "name": "AWP | Wildfire", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_wildfire", + "name": "Wildfire" + }, + "min_float": 0.01, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "917", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_wildfire_light.png" + }, + { + "id": "skin-593596", + "name": "AWP | Capillary", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_vein", + "name": "Capillary" + }, + "min_float": 0.05, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "943", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_vein_light.png" + }, + { + "id": "skin-593724", + "name": "AWP | Exoskeleton", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_exoskeleton", + "name": "Exoskeleton" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "975", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_exoskeleton_light.png" + }, + { + "id": "skin-593928", + "name": "AWP | Fade", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_awp_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1026", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_aa_awp_fade_light.png" + }, + { + "id": "skin-593940", + "name": "AWP | Silk Tiger", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_tigers_blue", + "name": "Silk Tiger" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1029", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_am_tigers_blue_light.png" + }, + { + "id": "skin-594056", + "name": "AWP | POP AWP", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_technowar_rwb", + "name": "POP AWP" + }, + "min_float": 0, + "max_float": 0.44, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1058", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_hy_technowar_rwb_light.png" + }, + { + "id": "skin-594400", + "name": "AWP | Chromatic Aberration", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_awp_chroma_pink", + "name": "Chromatic Aberration" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1144", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_cu_awp_chroma_pink_light.png" + }, + { + "id": "skin-594712", + "name": "AWP | Duality", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_limbo_snake", + "name": "Duality" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1222", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_limbo_snake_light.png" + }, + { + "id": "skin-594780", + "name": "AWP | Black Nile", + "description": "High risk and high reward, the infamous AWP is recognizable by its signature report and one-shot, one-kill policy.", + "weapon": { + "id": "weapon_awp", + "name": "AWP" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_awp_strone", + "name": "Black Nile" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1239", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_awp_gs_awp_strone_light.png" + }, + { + "id": "skin-655448", + "name": "FAMAS | Contrast Spray", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_spray", + "name": "Contrast Spray" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "22", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-office", + "name": "The Office Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_office.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_spray_light.png" + }, + { + "id": "skin-655548", + "name": "FAMAS | Colony", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_space_marine", + "name": "Colony" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "47", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_so_space_marine_light.png" + }, + { + "id": "skin-655600", + "name": "FAMAS | Dark Water", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_zebra_dark", + "name": "Dark Water" + }, + "min_float": 0.1, + "max_float": 0.26, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": true, + "paint_index": "60", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_zebra_dark_light.png" + }, + { + "id": "skin-655728", + "name": "FAMAS | Cyanospatter", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_reef", + "name": "Cyanospatter" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "92", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_reef_light.png" + }, + { + "id": "skin-655976", + "name": "FAMAS | Afterimage", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_broken_path_famas", + "name": "Afterimage" + }, + "min_float": 0.02, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "154", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_broken_path_famas_light.png" + }, + { + "id": "skin-656072", + "name": "FAMAS | Doomkitty", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_doomkitty", + "name": "Doomkitty" + }, + "min_float": 0.08, + "max_float": 0.22, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "178", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_doomkitty_light.png" + }, + { + "id": "skin-656136", + "name": "FAMAS | Spitfire", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_spitfire_famas_bravo", + "name": "Spitfire" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "194", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_light.png" + }, + { + "id": "skin-656232", + "name": "FAMAS | Hexane", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_bluehex", + "name": "Hexane" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "218", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_bluehex_light.png" + }, + { + "id": "skin-656320", + "name": "FAMAS | CaliCamo", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_varicamo_desert", + "name": "CaliCamo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "240", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_hy_varicamo_desert_light.png" + }, + { + "id": "skin-656336", + "name": "FAMAS | Teardown", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_hot_and_cold", + "name": "Teardown" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "244", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_light.png" + }, + { + "id": "skin-656400", + "name": "FAMAS | Pulse", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_famas_pulse", + "name": "Pulse" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "260", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_pulse_light.png" + }, + { + "id": "skin-656512", + "name": "FAMAS | Sergeant", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "an_famas_sgt", + "name": "Sergeant" + }, + "min_float": 0.1, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "288", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_an_famas_sgt_light.png" + }, + { + "id": "skin-656844", + "name": "FAMAS | Styx", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_nuclear_skulls2_famas", + "name": "Styx" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "371", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_light.png" + }, + { + "id": "skin-657076", + "name": "FAMAS | Djinn", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_famas_jinn", + "name": "Djinn" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "429", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_aq_famas_jinn_light.png" + }, + { + "id": "skin-657268", + "name": "FAMAS | Neural Net", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_famas_dots", + "name": "Neural Net" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "477", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_famas_dots_light.png" + }, + { + "id": "skin-657328", + "name": "FAMAS | Survivor Z", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_famas_lenta", + "name": "Survivor Z" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "492", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_lenta_light.png" + }, + { + "id": "skin-657476", + "name": "FAMAS | Valence", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_famas_contour", + "name": "Valence" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "529", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_aq_famas_contour_light.png" + }, + { + "id": "skin-657776", + "name": "FAMAS | Roll Cage", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_famas_rally", + "name": "Roll Cage" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "604", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_rally_light.png" + }, + { + "id": "skin-657864", + "name": "FAMAS | Mecha Industries", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_famas_mecha", + "name": "Mecha Industries" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "626", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_mecha_light.png" + }, + { + "id": "skin-657996", + "name": "FAMAS | Macabre", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_famas_macabre", + "name": "Macabre" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "659", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_famas_macabre_light.png" + }, + { + "id": "skin-658252", + "name": "FAMAS | Eye of Athena", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_famas_owl_orange", + "name": "Eye of Athena" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "723", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_owl_orange_light.png" + }, + { + "id": "skin-658700", + "name": "FAMAS | Crypsis", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_famas_ghost_insects", + "name": "Crypsis" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "835", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_famas_ghost_insects_light.png" + }, + { + "id": "skin-658812", + "name": "FAMAS | Night Borre", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_knots_blue", + "name": "Night Borre" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "863", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_knots_blue_light.png" + }, + { + "id": "skin-658836", + "name": "FAMAS | Sundown", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_palm_sunset", + "name": "Sundown" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "869", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_sp_palm_sunset_light.png" + }, + { + "id": "skin-658976", + "name": "FAMAS | Decommissioned", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_famas_nuke_tension", + "name": "Decommissioned" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "904", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_nuke_tension_light.png" + }, + { + "id": "skin-659036", + "name": "FAMAS | Commemoration", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_famas_legacy_gold", + "name": "Commemoration" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "919", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_legacy_gold_light.png" + }, + { + "id": "skin-659356", + "name": "FAMAS | Prime Conspiracy", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_numbers_magenta", + "name": "Prime Conspiracy" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "999", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_numbers_magenta_light.png" + }, + { + "id": "skin-659572", + "name": "FAMAS | Meltdown", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_nuclear_pattern4_famas", + "name": "Meltdown" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1053", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_am_nuclear_pattern4_famas_light.png" + }, + { + "id": "skin-659624", + "name": "FAMAS | Faulty Wiring", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_wiring_yellow", + "name": "Faulty Wiring" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1066", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_aa_wiring_yellow_light.png" + }, + { + "id": "skin-659728", + "name": "FAMAS | ZX Spectron", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_famas_spectron", + "name": "ZX Spectron" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1092", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_spectron_light.png" + }, + { + "id": "skin-659868", + "name": "FAMAS | Rapid Eye Movement", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_famas_rapid_eyes", + "name": "Rapid Eye Movement" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1127", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_rapid_eyes_light.png" + }, + { + "id": "skin-659944", + "name": "FAMAS | Meow 36", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_famas_corp_meow", + "name": "Meow 36" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1146", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_gs_famas_corp_meow_light.png" + }, + { + "id": "skin-660324", + "name": "FAMAS | Waters of Nephthys", + "description": "A cheap option for cash-strapped players, the FAMAS effectively fills the niche between more expensive rifles and the less-effective SMGs.", + "weapon": { + "id": "weapon_famas", + "name": "FAMAS" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_famas_holo_ocean", + "name": "Waters of Nephthys" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1241", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_famas_cu_famas_holo_ocean_light.png" + }, + { + "id": "skin-720920", + "name": "G3SG1 | Arctic Camo", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_arctic", + "name": "Arctic Camo" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "6", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-office", + "name": "The Office Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_office.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_arctic_light.png" + }, + { + "id": "skin-720928", + "name": "G3SG1 | Desert Storm", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_desert", + "name": "Desert Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "8", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_desert_light.png" + }, + { + "id": "skin-721080", + "name": "G3SG1 | Contractor", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_pmc", + "name": "Contractor" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "46", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_so_pmc_light.png" + }, + { + "id": "skin-721184", + "name": "G3SG1 | Safari Mesh", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_mesh_tan_light.png" + }, + { + "id": "skin-721192", + "name": "G3SG1 | Polar Camo", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_arctic_contrast", + "name": "Polar Camo" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "74", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_arctic_contrast_light.png" + }, + { + "id": "skin-721484", + "name": "G3SG1 | Jungle Dashed", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_tape_short_jungle", + "name": "Jungle Dashed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "147", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_tape_short_jungle_light.png" + }, + { + "id": "skin-721676", + "name": "G3SG1 | Demeter", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_bluepolygon_bravo", + "name": "Demeter" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "195", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_bluepolygon_bravo_light.png" + }, + { + "id": "skin-721812", + "name": "G3SG1 | Azure Zebra", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_zebracam_blue", + "name": "Azure Zebra" + }, + "min_float": 0, + "max_float": 0.28, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "229", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_zebracam_blue_light.png" + }, + { + "id": "skin-721836", + "name": "G3SG1 | VariCamo", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_varicamo", + "name": "VariCamo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "235", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_varicamo_light.png" + }, + { + "id": "skin-722072", + "name": "G3SG1 | Green Apple", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_green", + "name": "Green Apple" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "294", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_so_green_light.png" + }, + { + "id": "skin-722424", + "name": "G3SG1 | Murky", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_g3sg1_murky", + "name": "Murky" + }, + "min_float": 0, + "max_float": 0.25, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "382", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_am_g3sg1_murky_light.png" + }, + { + "id": "skin-722648", + "name": "G3SG1 | Chronos", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_chronos_g3sg1", + "name": "Chronos" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "438", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_chronos_g3sg1_light.png" + }, + { + "id": "skin-722756", + "name": "G3SG1 | Orange Kimono", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_kimono_diamonds_orange", + "name": "Orange Kimono" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "465", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_hy_kimono_diamonds_orange_light.png" + }, + { + "id": "skin-722868", + "name": "G3SG1 | Flux", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_g3sg1_flux_purple", + "name": "Flux" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "493", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_flux_purple_light.png" + }, + { + "id": "skin-722940", + "name": "G3SG1 | The Executioner", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_g3sg1_executioner", + "name": "The Executioner" + }, + "min_float": 0.14, + "max_float": 0.85, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "511", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_executioner_light.png" + }, + { + "id": "skin-723076", + "name": "G3SG1 | Orange Crash", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_g3sg1_militiaorange", + "name": "Orange Crash" + }, + "min_float": 0, + "max_float": 0.52, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "545", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_g3sg1_militiaorange_light.png" + }, + { + "id": "skin-723320", + "name": "G3SG1 | Ventilator", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_g3sg1_ventilator", + "name": "Ventilator" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "606", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_ventilator_light.png" + }, + { + "id": "skin-723408", + "name": "G3SG1 | Stinger", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_g3sg1_viper_yellow", + "name": "Stinger" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "628", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_viper_yellow_light.png" + }, + { + "id": "skin-723604", + "name": "G3SG1 | Hunter", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_g3sg1_cetme_redux", + "name": "Hunter" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "677", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_cetme_redux_light.png" + }, + { + "id": "skin-723744", + "name": "G3SG1 | High Seas", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_g3sg1_buccaneer", + "name": "High Seas" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "712", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_buccaneer_light.png" + }, + { + "id": "skin-723852", + "name": "G3SG1 | Violet Murano", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_murano_violet", + "name": "Violet Murano" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "739", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_am_murano_violet_light.png" + }, + { + "id": "skin-724120", + "name": "G3SG1 | Scavenger", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_g3sg1_savage", + "name": "Scavenger" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "806", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_savage_light.png" + }, + { + "id": "skin-724460", + "name": "G3SG1 | Black Sand", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_g3sg1_blacksand", + "name": "Black Sand" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "891", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_blacksand_light.png" + }, + { + "id": "skin-724616", + "name": "G3SG1 | New Roots", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_moro_carving_lightblue", + "name": "New Roots" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "930", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_sp_moro_carving_lightblue_light.png" + }, + { + "id": "skin-724816", + "name": "G3SG1 | Digital Mesh", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_g3sg1_disrupt", + "name": "Digital Mesh" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "980", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_gs_g3sg1_disrupt_light.png" + }, + { + "id": "skin-725032", + "name": "G3SG1 | Ancient Ritual", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_ancient_wine", + "name": "Ancient Ritual" + }, + "min_float": 0, + "max_float": 0.76, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1034", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_am_ancient_wine_light.png" + }, + { + "id": "skin-725276", + "name": "G3SG1 | Keeping Tabs", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_g3sg1_tacticalmap", + "name": "Keeping Tabs" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1095", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_tacticalmap_light.png" + }, + { + "id": "skin-725412", + "name": "G3SG1 | Dream Glade", + "description": "The pricy G3SG1 lowers movement speed considerably but compensates with a higher rate of fire than other sniper rifles.", + "weapon": { + "id": "weapon_g3sg1", + "name": "G3SG1" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_g3sg1_glade", + "name": "Dream Glade" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1129", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_g3sg1_cu_g3sg1_glade_light.png" + }, + { + "id": "skin-852272", + "name": "Galil AR | Winter Forest", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_forest_winter", + "name": "Winter Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "76", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-office", + "name": "The Office Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_office.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_forest_winter_light.png" + }, + { + "id": "skin-852300", + "name": "Galil AR | Orange DDPAT", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ddpat_orange", + "name": "Orange DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "83", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_ddpat_orange_light.png" + }, + { + "id": "skin-852372", + "name": "Galil AR | Tornado", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_tornado", + "name": "Tornado" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "101", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_so_tornado_light.png" + }, + { + "id": "skin-852444", + "name": "Galil AR | Sage Spray", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_spray_desert_sage", + "name": "Sage Spray" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "119", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_spray_desert_sage_light.png" + }, + { + "id": "skin-852736", + "name": "Galil AR | Shattered", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_crumple_bravo", + "name": "Shattered" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "192", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_crumple_bravo_light.png" + }, + { + "id": "skin-852832", + "name": "Galil AR | Blue Titanium", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "an_titanium30v", + "name": "Blue Titanium" + }, + "min_float": 0, + "max_float": 0.04, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "216", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_an_titanium30v_light.png" + }, + { + "id": "skin-852908", + "name": "Galil AR | VariCamo", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_varicamo", + "name": "VariCamo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "235", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_varicamo_light.png" + }, + { + "id": "skin-852916", + "name": "Galil AR | Urban Rubble", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_varicamo_urban", + "name": "Urban Rubble" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "237", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_varicamo_urban_light.png" + }, + { + "id": "skin-852932", + "name": "Galil AR | Hunting Blind", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_slashes", + "name": "Hunting Blind" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "241", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_mesh_slashes_light.png" + }, + { + "id": "skin-852952", + "name": "Galil AR | Amber Fade", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_fade_metallic", + "name": "Amber Fade" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "246", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_aa_fade_metallic_light.png" + }, + { + "id": "skin-853024", + "name": "Galil AR | Sandstorm", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sandstorm", + "name": "Sandstorm" + }, + "min_float": 0.1, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "264", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_sandstorm_light.png" + }, + { + "id": "skin-853156", + "name": "Galil AR | Tuxedo", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_orca", + "name": "Tuxedo" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "297", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_so_orca_light.png" + }, + { + "id": "skin-853200", + "name": "Galil AR | Kami", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_galil_kami", + "name": "Kami" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "308", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_galil_kami_light.png" + }, + { + "id": "skin-853484", + "name": "Galil AR | Cerberus", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_cerbrus_galil", + "name": "Cerberus" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "379", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_cerbrus_galil_light.png" + }, + { + "id": "skin-853560", + "name": "Galil AR | Chatterbox", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_galil_abrasion", + "name": "Chatterbox" + }, + "min_float": 0.35, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "398", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_abrasion_light.png" + }, + { + "id": "skin-853680", + "name": "Galil AR | Eco", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_galil_eco", + "name": "Eco" + }, + "min_float": 0.1, + "max_float": 0.85, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "428", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_eco_light.png" + }, + { + "id": "skin-853808", + "name": "Galil AR | Aqua Terrace", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_geometric_steps", + "name": "Aqua Terrace" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "460", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_am_geometric_steps_light.png" + }, + { + "id": "skin-853880", + "name": "Galil AR | Rocket Pop", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_galilar_particles", + "name": "Rocket Pop" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "478", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galilar_particles_light.png" + }, + { + "id": "skin-853944", + "name": "Galil AR | Stone Cold", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_galil_nightwing", + "name": "Stone Cold" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "494", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galil_nightwing_light.png" + }, + { + "id": "skin-854152", + "name": "Galil AR | Firefight", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_galilar_incenerator", + "name": "Firefight" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "546", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galilar_incenerator_light.png" + }, + { + "id": "skin-854484", + "name": "Galil AR | Black Sand", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_galil_ar-camo", + "name": "Black Sand" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "629", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_ar-camo_light.png" + }, + { + "id": "skin-854556", + "name": "Galil AR | Crimson Tsunami", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_galil_wave", + "name": "Crimson Tsunami" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "647", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_galil_wave_light.png" + }, + { + "id": "skin-854612", + "name": "Galil AR | Sugar Rush", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_galil_candychaos", + "name": "Sugar Rush" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "661", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_candychaos_light.png" + }, + { + "id": "skin-855128", + "name": "Galil AR | Cold Fusion", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_nuclear_skulls_aqua", + "name": "Cold Fusion" + }, + "min_float": 0, + "max_float": 0.83, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "790", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_nuclear_skulls_aqua_light.png" + }, + { + "id": "skin-855196", + "name": "Galil AR | Signal", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_galil_signal_red", + "name": "Signal" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "807", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_galil_signal_red_light.png" + }, + { + "id": "skin-855336", + "name": "Galil AR | Akoben", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_galil_akoben", + "name": "Akoben" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "842", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_galil_akoben_light.png" + }, + { + "id": "skin-855856", + "name": "Galil AR | Connexion", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_galil_phoenix", + "name": "Connexion" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "972", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galil_phoenix_light.png" + }, + { + "id": "skin-855892", + "name": "Galil AR | Vandal", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_galil_vandal", + "name": "Vandal" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "981", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_gs_galil_vandal_light.png" + }, + { + "id": "skin-856020", + "name": "Galil AR | Phoenix Blacklight", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_phoenix_tags_purple", + "name": "Phoenix Blacklight" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1013", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_phoenix_tags_purple_light.png" + }, + { + "id": "skin-856096", + "name": "Galil AR | Dusk Ruins", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ruins_red", + "name": "Dusk Ruins" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1032", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_hy_ruins_red_light.png" + }, + { + "id": "skin-856120", + "name": "Galil AR | Chromatic Aberration", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_galil_chroma_pink", + "name": "Chromatic Aberration" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1038", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_chroma_pink_light.png" + }, + { + "id": "skin-856252", + "name": "Galil AR | CAUTION!", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_galil_caution", + "name": "CAUTION!" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1071", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_sp_galil_caution_light.png" + }, + { + "id": "skin-856556", + "name": "Galil AR | Destroyer", + "description": "A less expensive option among the terrorist-exclusive assault rifles, the Galil AR is a serviceable weapon in medium to long-range combat.", + "weapon": { + "id": "weapon_galilar", + "name": "Galil AR" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_galil_destroyer", + "name": "Destroyer" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1147", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_galilar_cu_galil_destroyer_light.png" + }, + { + "id": "skin-917592", + "name": "M249 | Contrast Spray", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_spray", + "name": "Contrast Spray" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "22", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_spray_light.png" + }, + { + "id": "skin-917804", + "name": "M249 | Blizzard Marbleized", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_blizzard", + "name": "Blizzard Marbleized" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "75", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-office", + "name": "The Office Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_office.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_hy_blizzard_light.png" + }, + { + "id": "skin-918108", + "name": "M249 | Jungle", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_jungle", + "name": "Jungle" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "151", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_so_jungle_light.png" + }, + { + "id": "skin-918184", + "name": "M249 | Predator", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_zebracam", + "name": "Predator" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "170", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_zebracam_light.png" + }, + { + "id": "skin-918312", + "name": "M249 | Jungle DDPAT", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_ddpat_jungle_bravo", + "name": "Jungle DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "202", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_hy_ddpat_jungle_bravo_light.png" + }, + { + "id": "skin-918476", + "name": "M249 | Gator Mesh", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_mesh_python", + "name": "Gator Mesh" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "243", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_mesh_python_light.png" + }, + { + "id": "skin-918568", + "name": "M249 | Magma", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_obsidian", + "name": "Magma" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "266", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_aq_obsidian_light.png" + }, + { + "id": "skin-919108", + "name": "M249 | System Lock", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_m249_sektor", + "name": "System Lock" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "401", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_sektor_light.png" + }, + { + "id": "skin-919312", + "name": "M249 | Shipping Forecast", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_zodiac3", + "name": "Shipping Forecast" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "452", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_hy_zodiac3_light.png" + }, + { + "id": "skin-919392", + "name": "M249 | Impact Drill", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_keycolors", + "name": "Impact Drill" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "472", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_so_keycolors_light.png" + }, + { + "id": "skin-919488", + "name": "M249 | Nebula Crusader", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_m249_nebula_crusader", + "name": "Nebula Crusader" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "496", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_gs_m249_nebula_crusader_light.png" + }, + { + "id": "skin-919692", + "name": "M249 | Spectre", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_m249_spectre", + "name": "Spectre" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "547", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_spectre_light.png" + }, + { + "id": "skin-920096", + "name": "M249 | Emerald Poison Dart", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_m249_frog_original", + "name": "Emerald Poison Dart" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "648", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_m249_frog_original_light.png" + }, + { + "id": "skin-920812", + "name": "M249 | Humidor", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_moro_carving_burnt", + "name": "Humidor" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "827", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_moro_carving_burnt_light.png" + }, + { + "id": "skin-921104", + "name": "M249 | Warbird", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_m249_warbird_veteran", + "name": "Warbird" + }, + "min_float": 0.05, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "900", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_gs_m249_warbird_veteran_light.png" + }, + { + "id": "skin-921112", + "name": "M249 | Aztec", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_m249_aztec", + "name": "Aztec" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "902", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_aq_m249_aztec_light.png" + }, + { + "id": "skin-921236", + "name": "M249 | Midnight Palm", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_palm_night", + "name": "Midnight Palm" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "933", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_sp_palm_night_light.png" + }, + { + "id": "skin-921436", + "name": "M249 | Deep Relief", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_m249_deep_relief", + "name": "Deep Relief" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "983", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_deep_relief_light.png" + }, + { + "id": "skin-921672", + "name": "M249 | O.S.I.P.R.", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_m249_combine", + "name": "O.S.I.P.R." + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1042", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_gs_m249_combine_light.png" + }, + { + "id": "skin-922096", + "name": "M249 | Downtown", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_m249_downvote", + "name": "Downtown" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1148", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_downvote_light.png" + }, + { + "id": "skin-922472", + "name": "M249 | Submerged", + "description": "A strong open-area LMG, the M249 is the perfect choice for players willing to trade a slow fire rate for increased accuracy and a high ammo capacity.", + "weapon": { + "id": "weapon_m249", + "name": "M249" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_m249_scarab", + "name": "Submerged" + }, + "min_float": 0.02, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1242", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m249_cu_m249_scarab_light.png" + }, + { + "id": "skin-1048608", + "name": "M4A4 | Desert Storm", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_desert", + "name": "Desert Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "8", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_desert_light.png" + }, + { + "id": "skin-1048640", + "name": "M4A4 | Jungle Tiger", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_v_tiger", + "name": "Jungle Tiger" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "16", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-aztec", + "name": "The Aztec Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_aztec.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_v_tiger_light.png" + }, + { + "id": "skin-1048644", + "name": "M4A4 | Urban DDPAT", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ddpat_urb", + "name": "Urban DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "17", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_ddpat_urb_light.png" + }, + { + "id": "skin-1048980", + "name": "M4A4 | Tornado", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_tornado", + "name": "Tornado" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "101", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno", + "name": "The Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno.png" + } + ], + "crates": [ + { + "id": "crate-4023", + "name": "ESL One Cologne 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png" + }, + { + "id": "crate-4032", + "name": "DreamHack 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png" + }, + { + "id": "crate-4080", + "name": "ESL One Katowice 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png" + }, + { + "id": "crate-4133", + "name": "ESL One Cologne 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png" + }, + { + "id": "crate-4178", + "name": "DreamHack Cluj-Napoca 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png" + }, + { + "id": "crate-4227", + "name": "MLG Columbus 2016 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_inferno.bc1ef2fd8a91d14c6c2e7e2a444e2c05feb4956e.png" + }, + { + "id": "crate-4396", + "name": "Krakow 2017 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_inferno.740191615458fa81ee37a4f374220e5dd3ad91ea.png" + }, + { + "id": "crate-4463", + "name": "Boston 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_inferno.ebe33e799b076d3842b02bdddc98b783ea0f5ce4.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_so_tornado_light.png" + }, + { + "id": "skin-1049196", + "name": "M4A4 | Bullet Rain", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_bullet_rain_m4a1", + "name": "Bullet Rain" + }, + "min_float": 0.02, + "max_float": 0.46, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "155", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_bullet_rain_m4a1_light.png" + }, + { + "id": "skin-1049232", + "name": "M4A4 | Modern Hunter", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_hunter_modern", + "name": "Modern Hunter" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "164", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_hunter_modern_light.png" + }, + { + "id": "skin-1049244", + "name": "M4A4 | Radiation Hazard", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_nukestripe_orange", + "name": "Radiation Hazard" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "167", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_nukestripe_orange_light.png" + }, + { + "id": "skin-1049280", + "name": "M4A4 | Faded Zebra", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_zebracam_bw", + "name": "Faded Zebra" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "176", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_zebracam_bw_light.png" + }, + { + "id": "skin-1049324", + "name": "M4A4 | Zirka", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_star_bravo", + "name": "Zirka" + }, + "min_float": 0.06, + "max_float": 0.42, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "187", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_star_bravo_light.png" + }, + { + "id": "skin-1049436", + "name": "M4A4 | X-Ray", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_xray_m4", + "name": "X-Ray" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "215", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_xray_m4_light.png" + }, + { + "id": "skin-1049596", + "name": "M4A4 | Asiimov", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4_asimov", + "name": "Asiimov" + }, + "min_float": 0.18, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "255", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4_asimov_light.png" + }, + { + "id": "skin-1049812", + "name": "M4A4 | Howl", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1_howling", + "name": "Howl" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_contraband_weapon", + "name": "Contraband" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "309", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [], + "crates": [], + "special_notes": [ + { + "source": "https://steamcommunity.com/games/CSGO/announcements/detail/1751086783896069815", + "text": "This skin's appearance and rarity was changed from Covert to Contraband due to art theft. It also was removed from Huntsman Collection and Huntsman Weapon Case and is no longer obtainable except through trading or the Steam Market." + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a1_howling_light.png" + }, + { + "id": "skin-1049920", + "name": "M4A4 | Desert-Strike", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_titanstorm", + "name": "Desert-Strike" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "336", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_titanstorm_light.png" + }, + { + "id": "skin-1050112", + "name": "M4A4 | Griffin", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_griffin", + "name": "Griffin" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "384", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_griffin_light.png" + }, + { + "id": "skin-1050176", + "name": "M4A4 | 龍王 (Dragon King)", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_ancestral", + "name": "龍王 (Dragon King)" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "400", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_ancestral_light.png" + }, + { + "id": "skin-1050372", + "name": "M4A4 | Poseidon", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_poseidon", + "name": "Poseidon" + }, + "min_float": 0, + "max_float": 0.33, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "449", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_poseidon_light.png" + }, + { + "id": "skin-1050460", + "name": "M4A4 | Daybreak", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_kimono_sunrise", + "name": "Daybreak" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "471", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_am_kimono_sunrise_light.png" + }, + { + "id": "skin-1050496", + "name": "M4A4 | Evil Daimyo", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_evil_daimyo", + "name": "Evil Daimyo" + }, + "min_float": 0, + "max_float": 0.52, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "480", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_evil_daimyo_light.png" + }, + { + "id": "skin-1050624", + "name": "M4A4 | Royal Paladin", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a4_royal_squire", + "name": "Royal Paladin" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "512", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_royal_squire_light.png" + }, + { + "id": "skin-1050708", + "name": "M4A4 | The Battlestar", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a4_pioneer", + "name": "The Battlestar" + }, + "min_float": 0, + "max_float": 0.64, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "533", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_light.png" + }, + { + "id": "skin-1050928", + "name": "M4A4 | Desolate Space", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_desolate_space", + "name": "Desolate Space" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "588", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_desolate_space_light.png" + }, + { + "id": "skin-1051104", + "name": "M4A4 | Buzz Kill", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a4_sector", + "name": "Buzz Kill" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "632", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_sector_light.png" + }, + { + "id": "skin-1051232", + "name": "M4A4 | Hellfire", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_hellfire", + "name": "Hellfire" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "664", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_hellfire_light.png" + }, + { + "id": "skin-1051356", + "name": "M4A4 | Neo-Noir", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_neo_noir", + "name": "Neo-Noir" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "695", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_neo_noir_light.png" + }, + { + "id": "skin-1051496", + "name": "M4A4 | Dark Blossom", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_bud_blue", + "name": "Dark Blossom" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "730", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_sp_bud_blue_light.png" + }, + { + "id": "skin-1051696", + "name": "M4A4 | Mainframe", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_circuitboard_silver", + "name": "Mainframe" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "780", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_am_circuitboard_silver_light.png" + }, + { + "id": "skin-1051748", + "name": "M4A4 | Converter", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_red_hex", + "name": "Converter" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "793", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_red_hex_light.png" + }, + { + "id": "skin-1051820", + "name": "M4A4 | Magnesium", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a4_chopper_ghost", + "name": "Magnesium" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "811", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_chopper_ghost_light.png" + }, + { + "id": "skin-1051952", + "name": "M4A4 | The Emperor", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a4_emperor", + "name": "The Emperor" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "844", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_emperor_light.png" + }, + { + "id": "skin-1052280", + "name": "M4A4 | Red DDPAT", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ddpat_urban_red", + "name": "Red DDPAT" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "926", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_hy_ddpat_urban_red_light.png" + }, + { + "id": "skin-1052460", + "name": "M4A4 | Tooth Fairy", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_queenfairy", + "name": "Tooth Fairy" + }, + "min_float": 0, + "max_float": 0.73, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "971", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_queenfairy_light.png" + }, + { + "id": "skin-1052516", + "name": "M4A4 | Cyber Security", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_cyberpunk", + "name": "Cyber Security" + }, + "min_float": 0, + "max_float": 0.98, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "985", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_cyberpunk_light.png" + }, + { + "id": "skin-1052548", + "name": "M4A4 | Global Offensive", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_csgo_camo", + "name": "Global Offensive" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "993", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_csgo_camo_light.png" + }, + { + "id": "skin-1052740", + "name": "M4A4 | In Living Color", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_love", + "name": "In Living Color" + }, + "min_float": 0, + "max_float": 0.79, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1041", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_love_light.png" + }, + { + "id": "skin-1052828", + "name": "M4A4 | The Coalition", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a4_coalition", + "name": "The Coalition" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1063", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_coalition_light.png" + }, + { + "id": "skin-1052964", + "name": "M4A4 | Spider Lily", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4_flowers", + "name": "Spider Lily" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1097", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4_flowers_light.png" + }, + { + "id": "skin-1053172", + "name": "M4A4 | Poly Mag", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_elite_tactical", + "name": "Poly Mag" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1149", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_elite_tactical_light.png" + }, + { + "id": "skin-1053488", + "name": "M4A4 | Temukau", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a4_temukau", + "name": "Temukau" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1228", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_cu_m4a4_temukau_light.png" + }, + { + "id": "skin-1053596", + "name": "M4A4 | Eye of Horus", + "description": "More accurate but less damaging than its AK-47 counterpart, the M4A4 is the full-auto assault rifle of choice for CTs.", + "weapon": { + "id": "weapon_m4a1", + "name": "M4A4" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a4_ra", + "name": "Eye of Horus" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1255", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_gs_m4a4_ra_light.png" + }, + { + "id": "skin-1114124", + "name": "MAC-10 | Candy Apple", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_red", + "name": "Candy Apple" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "3", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_red_light.png" + }, + { + "id": "skin-1114180", + "name": "MAC-10 | Urban DDPAT", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_ddpat_urb", + "name": "Urban DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "17", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo", + "name": "The Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo.png" + } + ], + "crates": [ + { + "id": "crate-4666", + "name": "Berlin 2019 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_vertigo.764d7a1f455a32f6f28561dc22cbf835def7b481.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_hy_ddpat_urb_light.png" + }, + { + "id": "skin-1114240", + "name": "MAC-10 | Silver", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "an_silver", + "name": "Silver" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "32", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_an_silver_light.png" + }, + { + "id": "skin-1114264", + "name": "MAC-10 | Fade", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aa_fade_light.png" + }, + { + "id": "skin-1114288", + "name": "MAC-10 | Case Hardened", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": true, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aq_oiled_light.png" + }, + { + "id": "skin-1114504", + "name": "MAC-10 | Ultraviolet", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_purple_light.png" + }, + { + "id": "skin-1114516", + "name": "MAC-10 | Tornado", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_tornado", + "name": "Tornado" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "101", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_tornado_light.png" + }, + { + "id": "skin-1114740", + "name": "MAC-10 | Palm", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_palm", + "name": "Palm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "157", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_sp_palm_light.png" + }, + { + "id": "skin-1114864", + "name": "MAC-10 | Graven", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aq_etched_mac10_bravo", + "name": "Graven" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "188", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aq_etched_mac10_bravo_light.png" + }, + { + "id": "skin-1115096", + "name": "MAC-10 | Amber Fade", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_fade_metallic", + "name": "Amber Fade" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "246", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aa_fade_metallic_light.png" + }, + { + "id": "skin-1115248", + "name": "MAC-10 | Heat", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_redhot", + "name": "Heat" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "284", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_redhot_light.png" + }, + { + "id": "skin-1115352", + "name": "MAC-10 | Curse", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_decay", + "name": "Curse" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "310", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [], + "special_notes": [ + { + "source": "https://steamcommunity.com/games/CSGO/announcements/detail/1751086783896069815", + "text": "It was removed because one of its creators was also involved with the M4A4 Howl art theft. This is no longer obtainable from the Huntsman Weapon Case, but remains part of The Huntsman Collection and still works with trade-up contracts." + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_decay_light.png" + }, + { + "id": "skin-1115444", + "name": "MAC-10 | Indigo", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_indigo_and_grey", + "name": "Indigo" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "333", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_so_indigo_and_grey_light.png" + }, + { + "id": "skin-1115460", + "name": "MAC-10 | Tatter", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_korupt", + "name": "Tatter" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "337", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_korupt_light.png" + }, + { + "id": "skin-1115484", + "name": "MAC-10 | Commuter", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_luggage_mac10", + "name": "Commuter" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "343", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_luggage_mac10_light.png" + }, + { + "id": "skin-1115600", + "name": "MAC-10 | Nuclear Garden", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_nuclear_skulls3_mac10", + "name": "Nuclear Garden" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "372", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_nuclear_skulls3_mac10_light.png" + }, + { + "id": "skin-1115720", + "name": "MAC-10 | Malachite", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_mac10_malachite", + "name": "Malachite" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "402", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_malachite_light.png" + }, + { + "id": "skin-1115844", + "name": "MAC-10 | Neon Rider", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_neonrider", + "name": "Neon Rider" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "433", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_neonrider_light.png" + }, + { + "id": "skin-1116104", + "name": "MAC-10 | Rangeen", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_alekhya_duo", + "name": "Rangeen" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "498", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_alekhya_duo_light.png" + }, + { + "id": "skin-1116248", + "name": "MAC-10 | Lapis Gator", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_mac10_electricity", + "name": "Lapis Gator" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "534", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_electricity_light.png" + }, + { + "id": "skin-1116468", + "name": "MAC-10 | Carnivore", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aq_mac_10_alien_camo", + "name": "Carnivore" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "589", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aq_mac_10_alien_camo_light.png" + }, + { + "id": "skin-1116716", + "name": "MAC-10 | Last Dive", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_mac10_the_last_dive", + "name": "Last Dive" + }, + "min_float": 0, + "max_float": 0.52, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "651", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_aa_mac10_the_last_dive_light.png" + }, + { + "id": "skin-1116772", + "name": "MAC-10 | Aloha", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_mac10_aloha", + "name": "Aloha" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "665", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_aloha_light.png" + }, + { + "id": "skin-1116840", + "name": "MAC-10 | Oceanic", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_mac10_oceani", + "name": "Oceanic" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "682", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_mac10_oceani_light.png" + }, + { + "id": "skin-1117080", + "name": "MAC-10 | Red Filigree", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_ren_red", + "name": "Red Filigree" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "742", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_ren_red_light.png" + }, + { + "id": "skin-1117104", + "name": "MAC-10 | Calf Skin", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mac10_checker", + "name": "Calf Skin" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "748", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_checker_light.png" + }, + { + "id": "skin-1117156", + "name": "MAC-10 | Copper Borre", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_knots_brown", + "name": "Copper Borre" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "761", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_knots_brown_light.png" + }, + { + "id": "skin-1117360", + "name": "MAC-10 | Pipe Down", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mac10_exo_pipes", + "name": "Pipe Down" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "812", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_exo_pipes_light.png" + }, + { + "id": "skin-1117416", + "name": "MAC-10 | Sienna Damask", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_mirage_flowers_tan", + "name": "Sienna Damask" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "826", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_sp_mirage_flowers_tan_light.png" + }, + { + "id": "skin-1117472", + "name": "MAC-10 | Whitefish", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mac10_fish_bait", + "name": "Whitefish" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "840", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_fish_bait_light.png" + }, + { + "id": "skin-1117596", + "name": "MAC-10 | Surfwood", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_twigs_beach", + "name": "Surfwood" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "871", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_sp_twigs_beach_light.png" + }, + { + "id": "skin-1117704", + "name": "MAC-10 | Stalker", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mac10_stalker", + "name": "Stalker" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "898", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_stalker_light.png" + }, + { + "id": "skin-1117744", + "name": "MAC-10 | Classic Crate", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mac10_dust_crate", + "name": "Classic Crate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "908", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_dust_crate_light.png" + }, + { + "id": "skin-1117900", + "name": "MAC-10 | Disco Tech", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_nacre", + "name": "Disco Tech" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "947", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_nacre_light.png" + }, + { + "id": "skin-1117972", + "name": "MAC-10 | Allure", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_isoonna", + "name": "Allure" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "965", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_isoonna_light.png" + }, + { + "id": "skin-1118148", + "name": "MAC-10 | Hot Snakes", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mac10_snake", + "name": "Hot Snakes" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1009", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_gs_mac10_snake_light.png" + }, + { + "id": "skin-1118212", + "name": "MAC-10 | Gold Brick", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_gold_brick", + "name": "Gold Brick" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1025", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_am_gold_brick_light.png" + }, + { + "id": "skin-1118292", + "name": "MAC-10 | Button Masher", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_portable", + "name": "Button Masher" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1045", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_portable_light.png" + }, + { + "id": "skin-1118380", + "name": "MAC-10 | Propaganda", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_propaganda", + "name": "Propaganda" + }, + "min_float": 0, + "max_float": 0.62, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1067", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_propaganda_light.png" + }, + { + "id": "skin-1118412", + "name": "MAC-10 | Strats", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_vertigospray_blue", + "name": "Strats" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1075", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_hy_vertigospray_blue_light.png" + }, + { + "id": "skin-1118504", + "name": "MAC-10 | Toybox", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_toybox", + "name": "Toybox" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1098", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_toybox_light.png" + }, + { + "id": "skin-1118636", + "name": "MAC-10 | Ensnared", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_pixie", + "name": "Ensnared" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1131", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_pixie_light.png" + }, + { + "id": "skin-1118712", + "name": "MAC-10 | Monkeyflage", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_monkeyflage", + "name": "Monkeyflage" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1150", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_monkeyflage_light.png" + }, + { + "id": "skin-1119028", + "name": "MAC-10 | Sakkaku", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_sakkaku", + "name": "Sakkaku" + }, + "min_float": 0.21, + "max_float": 0.79, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1229", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_sakkaku_light.png" + }, + { + "id": "skin-1119088", + "name": "MAC-10 | Echoing Sands", + "description": "Essentially a box that bullets come out of, the MAC-10 SMG boasts a high rate of fire, with poor spread accuracy and high recoil as trade-offs.", + "weapon": { + "id": "weapon_mac10", + "name": "MAC-10" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mac10_scarab", + "name": "Echoing Sands" + }, + "min_float": 0.02, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1244", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mac10_cu_mac10_scarab_light.png" + }, + { + "id": "skin-1245264", + "name": "P90 | Virus", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_zombie", + "name": "Virus" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "20", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_zombie_light.png" + }, + { + "id": "skin-1245452", + "name": "P90 | Cold Blooded", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_slither_p90", + "name": "Cold Blooded" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "67", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_slither_p90_light.png" + }, + { + "id": "skin-1245584", + "name": "P90 | Storm", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_stormfront", + "name": "Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "100", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_so_stormfront_light.png" + }, + { + "id": "skin-1245628", + "name": "P90 | Glacier Mesh", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_mesh_glacier", + "name": "Glacier Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "111", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo", + "name": "The Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo.png" + } + ], + "crates": [ + { + "id": "crate-4666", + "name": "Berlin 2019 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_vertigo.764d7a1f455a32f6f28561dc22cbf835def7b481.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_mesh_glacier_light.png" + }, + { + "id": "skin-1245680", + "name": "P90 | Sand Spray", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_spray_sand", + "name": "Sand Spray" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "124", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_spray_sand_light.png" + }, + { + "id": "skin-1245808", + "name": "P90 | Death by Kitty", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_catskulls_p90", + "name": "Death by Kitty" + }, + "min_float": 0.08, + "max_float": 0.32, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "156", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_catskulls_p90_light.png" + }, + { + "id": "skin-1245860", + "name": "P90 | Fallout Warning", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_nukestripe_maroon", + "name": "Fallout Warning" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "169", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_nukestripe_maroon_light.png" + }, + { + "id": "skin-1245884", + "name": "P90 | Scorched", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_dapple_light.png" + }, + { + "id": "skin-1245912", + "name": "P90 | Emerald Dragon", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_dragon_p90_bravo", + "name": "Emerald Dragon" + }, + "min_float": 0.06, + "max_float": 0.52, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "182", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_dragon_p90_bravo_light.png" + }, + { + "id": "skin-1246096", + "name": "P90 | Blind Spot", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_modspots", + "name": "Blind Spot" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "228", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_modspots_light.png" + }, + { + "id": "skin-1246120", + "name": "P90 | Ash Wood", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_twigs", + "name": "Ash Wood" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "234", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_twigs_light.png" + }, + { + "id": "skin-1246160", + "name": "P90 | Teardown", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_mesh_hot_and_cold", + "name": "Teardown" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "244", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_mesh_hot_and_cold_light.png" + }, + { + "id": "skin-1246316", + "name": "P90 | Trigon", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_trigon", + "name": "Trigon" + }, + "min_float": 0.08, + "max_float": 0.75, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "283", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_trigon_light.png" + }, + { + "id": "skin-1246428", + "name": "P90 | Desert Warfare", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_scorpius", + "name": "Desert Warfare" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "311", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [], + "special_notes": [ + { + "source": "https://steamcommunity.com/games/CSGO/announcements/detail/1751086783896069815", + "text": "It was removed because one of its creators was also involved with the M4A4 Howl art theft. This is no longer obtainable from the Huntsman Weapon Case, but remains part of The Huntsman Collection and still works with trade-up contracts." + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_scorpius_light.png" + }, + { + "id": "skin-1246524", + "name": "P90 | Module", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "an_royalbleed", + "name": "Module" + }, + "min_float": 0, + "max_float": 0.35, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "335", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_an_royalbleed_light.png" + }, + { + "id": "skin-1246552", + "name": "P90 | Leather", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_brown_leather_p90", + "name": "Leather" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "342", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_brown_leather_p90_light.png" + }, + { + "id": "skin-1246620", + "name": "P90 | Asiimov", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90-asiimov", + "name": "Asiimov" + }, + "min_float": 0, + "max_float": 0.92, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "359", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90-asiimov_light.png" + }, + { + "id": "skin-1247128", + "name": "P90 | Elite Build", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_mastery", + "name": "Elite Build" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "486", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_mastery_light.png" + }, + { + "id": "skin-1247248", + "name": "P90 | Shapewood", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_shapewood", + "name": "Shapewood" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "516", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_shapewood_light.png" + }, + { + "id": "skin-1247556", + "name": "P90 | Chopper", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_p90_full_throttle", + "name": "Chopper" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "593", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_full_throttle_light.png" + }, + { + "id": "skin-1247628", + "name": "P90 | Grim", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_grimm", + "name": "Grim" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "611", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_grimm_light.png" + }, + { + "id": "skin-1247728", + "name": "P90 | Shallow Grave", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_p90_shallow_grave", + "name": "Shallow Grave" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "636", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_shallow_grave_light.png" + }, + { + "id": "skin-1247860", + "name": "P90 | Death Grip", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_p90_barebones_blue", + "name": "Death Grip" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "669", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_p90_barebones_blue_light.png" + }, + { + "id": "skin-1248052", + "name": "P90 | Traction", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_p90_tread", + "name": "Traction" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "717", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_tread_light.png" + }, + { + "id": "skin-1248088", + "name": "P90 | Sunset Lily", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_bloom_orange", + "name": "Sunset Lily" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "726", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_bloom_orange_light.png" + }, + { + "id": "skin-1248160", + "name": "P90 | Baroque Red", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_veneto_red", + "name": "Baroque Red" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "744", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_veneto_red_light.png" + }, + { + "id": "skin-1248220", + "name": "P90 | Astral Jörmungandr", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_jorm_blue", + "name": "Astral Jörmungandr" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "759", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_jorm_blue_light.png" + }, + { + "id": "skin-1248288", + "name": "P90 | Facility Negative", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_blueprint_aqua", + "name": "Facility Negative" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "776", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_blueprint_aqua_light.png" + }, + { + "id": "skin-1248496", + "name": "P90 | Verdant Growth", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_moro_textile_green_vine", + "name": "Verdant Growth" + }, + "min_float": 0, + "max_float": 0.47, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "828", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_sp_moro_textile_green_vine_light.png" + }, + { + "id": "skin-1248580", + "name": "P90 | Off World", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_offworld", + "name": "Off World" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "849", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_offworld_light.png" + }, + { + "id": "skin-1248828", + "name": "P90 | Nostalgia", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_nostalgia", + "name": "Nostalgia" + }, + "min_float": 0, + "max_float": 0.57, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "911", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_nostalgia_light.png" + }, + { + "id": "skin-1248884", + "name": "P90 | Desert DDPAT", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_ddpat_desert", + "name": "Desert DDPAT" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "925", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_ddpat_desert_light.png" + }, + { + "id": "skin-1249060", + "name": "P90 | Freight", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_p90_container", + "name": "Freight" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "969", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_container_light.png" + }, + { + "id": "skin-1249092", + "name": "P90 | Cocoa Rampage", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_p90_dino_rampage", + "name": "Cocoa Rampage" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "977", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_p90_dino_rampage_light.png" + }, + { + "id": "skin-1249184", + "name": "P90 | Run and Hide", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_jaguar_p90", + "name": "Run and Hide" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1000", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_jaguar_p90_light.png" + }, + { + "id": "skin-1249244", + "name": "P90 | Tiger Pit", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_tigers_brown", + "name": "Tiger Pit" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1015", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_am_tigers_brown_light.png" + }, + { + "id": "skin-1249264", + "name": "P90 | Ancient Earth", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_ancient_brown", + "name": "Ancient Earth" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1020", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_aa_ancient_brown_light.png" + }, + { + "id": "skin-1249480", + "name": "P90 | Schematic", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_vertigogeo", + "name": "Schematic" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1074", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_hy_vertigogeo_light.png" + }, + { + "id": "skin-1249800", + "name": "P90 | Vent Rush", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_p90_tangled", + "name": "Vent Rush" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1154", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_tangled_light.png" + }, + { + "id": "skin-1250116", + "name": "P90 | Neoqueen", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_p90_neoqueen", + "name": "Neoqueen" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1233", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_gs_p90_neoqueen_light.png" + }, + { + "id": "skin-1250184", + "name": "P90 | ScaraB Rush", + "description": "Easily recognizable for its unique bullpup design, the P90 is a great weapon to shoot on the move due to its high-capacity magazine and low recoil.", + "weapon": { + "id": "weapon_p90", + "name": "P90" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_p90_scarab_of_wisdom", + "name": "ScaraB Rush" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1250", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p90_cu_p90_scarab_of_wisdom_light.png" + }, + { + "id": "skin-1510340", + "name": "MP5-SD | Dirt Drop", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_tape_short_rally", + "name": "Dirt Drop" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "753", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_sp_tape_short_rally_light.png" + }, + { + "id": "skin-1510452", + "name": "MP5-SD | Co-Processor", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_circuitboard_aqua", + "name": "Co-Processor" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "781", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_am_circuitboard_aqua_light.png" + }, + { + "id": "skin-1510520", + "name": "MP5-SD | Nitro", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_orange_accents3", + "name": "Nitro" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "798", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_so_orange_accents3_light.png" + }, + { + "id": "skin-1510528", + "name": "MP5-SD | Lab Rats", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_labrat_mp5", + "name": "Lab Rats" + }, + "min_float": 0, + "max_float": 0.35, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "800", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-blacksite", + "name": "The Blacksite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_blacksite.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_hy_labrat_mp5_light.png" + }, + { + "id": "skin-1510568", + "name": "MP5-SD | Phosphor", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5_festival_drip", + "name": "Phosphor" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "810", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_festival_drip_light.png" + }, + { + "id": "skin-1510712", + "name": "MP5-SD | Gauss", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5sd_astromatic", + "name": "Gauss" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "846", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5sd_astromatic_light.png" + }, + { + "id": "skin-1510816", + "name": "MP5-SD | Bamboo Garden", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_bamboo_stmarc", + "name": "Bamboo Garden" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "872", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_hy_bamboo_stmarc_light.png" + }, + { + "id": "skin-1510880", + "name": "MP5-SD | Acid Wash", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5_etch", + "name": "Acid Wash" + }, + "min_float": 0, + "max_float": 0.68, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "888", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_etch_light.png" + }, + { + "id": "skin-1510988", + "name": "MP5-SD | Agent", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5_fbi", + "name": "Agent" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "915", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_fbi_light.png" + }, + { + "id": "skin-1511020", + "name": "MP5-SD | Oxide Oasis", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5_neon_flektarn", + "name": "Oxide Oasis" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "923", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_neon_flektarn_light.png" + }, + { + "id": "skin-1511124", + "name": "MP5-SD | Desert Strike", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp5_desert_strike", + "name": "Desert Strike" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "949", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_cu_mp5_desert_strike_light.png" + }, + { + "id": "skin-1511224", + "name": "MP5-SD | Kitbash", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5sd_wasteland_legacy", + "name": "Kitbash" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "974", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5sd_wasteland_legacy_light.png" + }, + { + "id": "skin-1511272", + "name": "MP5-SD | Condition Zero", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5_conditionzero", + "name": "Condition Zero" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "986", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_conditionzero_light.png" + }, + { + "id": "skin-1511572", + "name": "MP5-SD | Autumn Twilly", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_trainarchitect", + "name": "Autumn Twilly" + }, + "min_float": 0, + "max_float": 0.58, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1061", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_hy_trainarchitect_light.png" + }, + { + "id": "skin-1511876", + "name": "MP5-SD | Necro Jr.", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp5_kid_necronomicon", + "name": "Necro Jr." + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1137", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_gs_mp5_kid_necronomicon_light.png" + }, + { + "id": "skin-1512252", + "name": "MP5-SD | Liquidation", + "description": "Often imitated but never equaled, the iconic MP5 is perhaps the most versatile and popular SMG in the world. This SD variant features an integrated silencer, making an already formidable weapon whisper-quiet.", + "weapon": { + "id": "weapon_mp5sd", + "name": "MP5-SD" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp5sd_quick_liquidation", + "name": "Liquidation" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1231", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp5sd_cu_mp5sd_quick_liquidation_light.png" + }, + { + "id": "skin-1572924", + "name": "UMP-45 | Gunsmoke", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_gelpen", + "name": "Gunsmoke" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "15", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_gelpen_light.png" + }, + { + "id": "skin-1572932", + "name": "UMP-45 | Urban DDPAT", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_ddpat_urb", + "name": "Urban DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "17", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_ddpat_urb_light.png" + }, + { + "id": "skin-1573012", + "name": "UMP-45 | Blaze", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_flames", + "name": "Blaze" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "37", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_flames_light.png" + }, + { + "id": "skin-1573144", + "name": "UMP-45 | Carbon Fiber", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_carbon_fiber", + "name": "Carbon Fiber" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "70", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_am_carbon_fiber_light.png" + }, + { + "id": "skin-1573224", + "name": "UMP-45 | Mudder", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_mottled_sand", + "name": "Mudder" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "90", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_mottled_sand_light.png" + }, + { + "id": "skin-1573236", + "name": "UMP-45 | Caramel", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_caramel", + "name": "Caramel" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "93", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-assault", + "name": "The Assault Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_assault.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_so_caramel_light.png" + }, + { + "id": "skin-1573540", + "name": "UMP-45 | Fallout Warning", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_nukestripe_maroon", + "name": "Fallout Warning" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "169", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_nukestripe_maroon_light.png" + }, + { + "id": "skin-1573564", + "name": "UMP-45 | Scorched", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_dapple_light.png" + }, + { + "id": "skin-1573636", + "name": "UMP-45 | Bone Pile", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_skull_diagram_bravo", + "name": "Bone Pile" + }, + "min_float": 0.06, + "max_float": 0.34, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "193", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_skull_diagram_bravo_light.png" + }, + { + "id": "skin-1573864", + "name": "UMP-45 | Full Stop", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_varicamo_red", + "name": "Full Stop" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "250", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_varicamo_red_light.png" + }, + { + "id": "skin-1573988", + "name": "UMP-45 | Corporal", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump_corporal", + "name": "Corporal" + }, + "min_float": 0.05, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "281", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_corporal_light.png" + }, + { + "id": "skin-1574196", + "name": "UMP-45 | Indigo", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_indigo_and_grey", + "name": "Indigo" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "333", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_so_indigo_and_grey_light.png" + }, + { + "id": "skin-1574312", + "name": "UMP-45 | Labyrinth", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_lines_orange", + "name": "Labyrinth" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "362", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_lines_orange_light.png" + }, + { + "id": "skin-1574432", + "name": "UMP-45 | Delusion", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_ump45_d-visions", + "name": "Delusion" + }, + "min_float": 0.06, + "max_float": 0.35, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "392", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_sp_ump45_d-visions_light.png" + }, + { + "id": "skin-1574608", + "name": "UMP-45 | Grand Prix", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_ump_racer", + "name": "Grand Prix" + }, + "min_float": 0.25, + "max_float": 0.35, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "436", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_am_ump_racer_light.png" + }, + { + "id": "skin-1574628", + "name": "UMP-45 | Minotaur's Labyrinth", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_labyrinth", + "name": "Minotaur's Labyrinth" + }, + "min_float": 0, + "max_float": 0.39, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "441", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_labyrinth_light.png" + }, + { + "id": "skin-1574816", + "name": "UMP-45 | Riot", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump45_uproar", + "name": "Riot" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "488", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_uproar_light.png" + }, + { + "id": "skin-1575088", + "name": "UMP-45 | Primal Saber", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump45_primalsaber", + "name": "Primal Saber" + }, + "min_float": 0, + "max_float": 0.77, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "556", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_primalsaber_light.png" + }, + { + "id": "skin-1575324", + "name": "UMP-45 | Briefing", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump45_metritera", + "name": "Briefing" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "615", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_metritera_light.png" + }, + { + "id": "skin-1575472", + "name": "UMP-45 | Scaffold", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_ump_abyss", + "name": "Scaffold" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "652", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_gs_ump_abyss_light.png" + }, + { + "id": "skin-1575552", + "name": "UMP-45 | Metal Flowers", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aq_ump45_flameflower", + "name": "Metal Flowers" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "672", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aq_ump45_flameflower_light.png" + }, + { + "id": "skin-1575616", + "name": "UMP-45 | Exposure", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump45_x-ray_machine", + "name": "Exposure" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "688", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_x-ray_machine_light.png" + }, + { + "id": "skin-1575680", + "name": "UMP-45 | Arctic Wolf", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump45_white_fang", + "name": "Arctic Wolf" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "704", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump45_white_fang_light.png" + }, + { + "id": "skin-1575764", + "name": "UMP-45 | Day Lily", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_bloom_red", + "name": "Day Lily" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "725", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_bloom_red_light.png" + }, + { + "id": "skin-1575976", + "name": "UMP-45 | Facility Dark", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_blueprint_bluered", + "name": "Facility Dark" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "778", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_blueprint_bluered_light.png" + }, + { + "id": "skin-1576072", + "name": "UMP-45 | Momentum", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump_arrows", + "name": "Momentum" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "802", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_arrows_light.png" + }, + { + "id": "skin-1576268", + "name": "UMP-45 | Moonrise", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_ump45_moonrise_sunset", + "name": "Moonrise" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "851", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_ump45_moonrise_sunset_light.png" + }, + { + "id": "skin-1576380", + "name": "UMP-45 | Fade", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_fade_ump", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "879", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_fade_ump_light.png" + }, + { + "id": "skin-1576528", + "name": "UMP-45 | Plastique", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump_bomb", + "name": "Plastique" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "916", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_bomb_light.png" + }, + { + "id": "skin-1576824", + "name": "UMP-45 | Gold Bismuth", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_ump_gold_bismuth", + "name": "Gold Bismuth" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "990", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_gs_ump_gold_bismuth_light.png" + }, + { + "id": "skin-1576876", + "name": "UMP-45 | Crime Scene", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump_crime_scene", + "name": "Crime Scene" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1003", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_crime_scene_light.png" + }, + { + "id": "skin-1576896", + "name": "UMP-45 | Houndstooth", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_houndstooth_brown", + "name": "Houndstooth" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1008", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_hy_houndstooth_brown_light.png" + }, + { + "id": "skin-1577060", + "name": "UMP-45 | Oscillator", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_ump45_electrowave", + "name": "Oscillator" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1049", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_am_ump45_electrowave_light.png" + }, + { + "id": "skin-1577204", + "name": "UMP-45 | Mechanism", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_engine_performance", + "name": "Mechanism" + }, + "min_float": 0, + "max_float": 0.49, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1085", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_aa_engine_performance_light.png" + }, + { + "id": "skin-1577492", + "name": "UMP-45 | Roadblock", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_ump_roadblock", + "name": "Roadblock" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1157", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_gs_ump_roadblock_light.png" + }, + { + "id": "skin-1577808", + "name": "UMP-45 | Wild Child", + "description": "The misunderstood middle child of the SMG family, the UMP45's small magazine is the only drawback to an otherwise versatile close-quarters automatic.", + "weapon": { + "id": "weapon_ump45", + "name": "UMP-45" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_ump_clutch_kick", + "name": "Wild Child" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1236", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ump45_cu_ump_clutch_kick_light.png" + }, + { + "id": "skin-1638568", + "name": "XM1014 | Blue Steel", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_blued_light.png" + }, + { + "id": "skin-1638780", + "name": "XM1014 | Grassland", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_grassland", + "name": "Grassland" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "95", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_so_grassland_light.png" + }, + { + "id": "skin-1638784", + "name": "XM1014 | Blue Spruce", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_moss", + "name": "Blue Spruce" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "96", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_so_moss_light.png" + }, + { + "id": "skin-1638940", + "name": "XM1014 | Urban Perforated", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_tape_dots_urban", + "name": "Urban Perforated" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "135", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo", + "name": "The Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo.png" + } + ], + "crates": [ + { + "id": "crate-4666", + "name": "Berlin 2019 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_vertigo.764d7a1f455a32f6f28561dc22cbf835def7b481.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_sp_tape_dots_urban_light.png" + }, + { + "id": "skin-1639064", + "name": "XM1014 | Blaze Orange", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_hunter_blaze_orange", + "name": "Blaze Orange" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "166", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_hunter_blaze_orange_light.png" + }, + { + "id": "skin-1639076", + "name": "XM1014 | Fallout Warning", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_nukestripe_maroon", + "name": "Fallout Warning" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "169", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_sp_nukestripe_maroon_light.png" + }, + { + "id": "skin-1639220", + "name": "XM1014 | Jungle", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_jungle_bravo", + "name": "Jungle" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "205", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_so_jungle_bravo_light.png" + }, + { + "id": "skin-1639352", + "name": "XM1014 | VariCamo Blue", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_varicamo_blue", + "name": "VariCamo Blue" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "238", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_varicamo_blue_light.png" + }, + { + "id": "skin-1639360", + "name": "XM1014 | CaliCamo", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_varicamo_desert", + "name": "CaliCamo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "240", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_varicamo_desert_light.png" + }, + { + "id": "skin-1639656", + "name": "XM1014 | Heaven Guard", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_xm1014_heaven_guard", + "name": "Heaven Guard" + }, + "min_float": 0.03, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "314", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_heaven_guard_light.png" + }, + { + "id": "skin-1639680", + "name": "XM1014 | Red Python", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_snakeskin_red", + "name": "Red Python" + }, + "min_float": 0.08, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "320", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_snakeskin_red_light.png" + }, + { + "id": "skin-1639792", + "name": "XM1014 | Red Leather", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_leather_xm1014", + "name": "Red Leather" + }, + "min_float": 0, + "max_float": 0.56, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "348", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_leather_xm1014_light.png" + }, + { + "id": "skin-1639880", + "name": "XM1014 | Bone Machine", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_nuclear_skulls1_xm1014", + "name": "Bone Machine" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "370", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_nuclear_skulls1_xm1014_light.png" + }, + { + "id": "skin-1639972", + "name": "XM1014 | Tranquility", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_xm1014_caritas", + "name": "Tranquility" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "393", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_caritas_light.png" + }, + { + "id": "skin-1640028", + "name": "XM1014 | Quicksilver", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_xm1014_sigla", + "name": "Quicksilver" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "407", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_sigla_light.png" + }, + { + "id": "skin-1640420", + "name": "XM1014 | Scumbria", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_xm1014_scumbria", + "name": "Scumbria" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "505", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_scumbria_light.png" + }, + { + "id": "skin-1640484", + "name": "XM1014 | Teclu Burner", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_xm1014_hot_rod", + "name": "Teclu Burner" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "521", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_hot_rod_light.png" + }, + { + "id": "skin-1640628", + "name": "XM1014 | Black Tie", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_xm1014_spectrum", + "name": "Black Tie" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "557", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_spectrum_light.png" + }, + { + "id": "skin-1640864", + "name": "XM1014 | Slipstream", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_xm1014_fractal_blue", + "name": "Slipstream" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "616", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_xm1014_fractal_blue_light.png" + }, + { + "id": "skin-1641016", + "name": "XM1014 | Seasons", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_xm_leaf_fade", + "name": "Seasons" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "654", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm_leaf_fade_light.png" + }, + { + "id": "skin-1641156", + "name": "XM1014 | Ziggy", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_xm1014_ziggy_anarchy", + "name": "Ziggy" + }, + "min_float": 0, + "max_float": 0.72, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "689", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_ziggy_anarchy_light.png" + }, + { + "id": "skin-1641224", + "name": "XM1014 | Oxide Blaze", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_xm1014_oxide_blaze", + "name": "Oxide Blaze" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "706", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_oxide_blaze_light.png" + }, + { + "id": "skin-1641324", + "name": "XM1014 | Banana Leaf", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_leaf_green", + "name": "Banana Leaf" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "731", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_hy_leaf_green_light.png" + }, + { + "id": "skin-1641440", + "name": "XM1014 | Frost Borre", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_knots_silver", + "name": "Frost Borre" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "760", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_knots_silver_light.png" + }, + { + "id": "skin-1641684", + "name": "XM1014 | Elegant Vines", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_moro_textile_bright", + "name": "Elegant Vines" + }, + "min_float": 0, + "max_float": 0.37, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "821", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_moro_textile_bright_light.png" + }, + { + "id": "skin-1641800", + "name": "XM1014 | Incinegator", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_xm1014_incinerator", + "name": "Incinegator" + }, + "min_float": 0.14, + "max_float": 0.65, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "850", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_incinerator_light.png" + }, + { + "id": "skin-1642280", + "name": "XM1014 | Entombed", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_xm1014_amulet_blue", + "name": "Entombed" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "970", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_amulet_blue_light.png" + }, + { + "id": "skin-1642376", + "name": "XM1014 | Charter", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_authority_brown", + "name": "Charter" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "994", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_authority_brown_light.png" + }, + { + "id": "skin-1642484", + "name": "XM1014 | Ancient Lore", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_ancient_warm", + "name": "Ancient Lore" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1021", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_ancient_warm_light.png" + }, + { + "id": "skin-1642584", + "name": "XM1014 | XOXO", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_xm1014_punk", + "name": "XOXO" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1046", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_aq_xm1014_punk_light.png" + }, + { + "id": "skin-1642712", + "name": "XM1014 | Blue Tire", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_tire_tread_blue", + "name": "Blue Tire" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1078", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_sp_tire_tread_blue_light.png" + }, + { + "id": "skin-1642812", + "name": "XM1014 | Watchdog", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_xm1014_watchdog", + "name": "Watchdog" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1103", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_gs_xm1014_watchdog_light.png" + }, + { + "id": "skin-1642940", + "name": "XM1014 | Zombie Offensive", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_xm_zombie_offensive", + "name": "Zombie Offensive" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1135", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_am_xm_zombie_offensive_light.png" + }, + { + "id": "skin-1643416", + "name": "XM1014 | Hieroglyph", + "description": "The XM1014 is a powerful fully automatic shotgun that justifies its heftier price tag with the ability to paint a room with lead fast.", + "weapon": { + "id": "weapon_xm1014", + "name": "XM1014" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_xm1014_pharaoh", + "name": "Hieroglyph" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1254", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_xm1014_cu_xm1014_pharaoh_light.png" + }, + { + "id": "skin-1703948", + "name": "PP-Bizon | Candy Apple", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_red", + "name": "Candy Apple" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "3", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_so_red_light.png" + }, + { + "id": "skin-1703988", + "name": "PP-Bizon | Blue Streak", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_splatter", + "name": "Blue Streak" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "13", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_splatter_light.png" + }, + { + "id": "skin-1704036", + "name": "PP-Bizon | Forest Leaves", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_leaves", + "name": "Forest Leaves" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "25", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_leaves_light.png" + }, + { + "id": "skin-1704216", + "name": "PP-Bizon | Carbon Fiber", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_carbon_fiber", + "name": "Carbon Fiber" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "70", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-vertigo", + "name": "The Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo.png" + } + ], + "crates": [ + { + "id": "crate-4666", + "name": "Berlin 2019 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_vertigo.764d7a1f455a32f6f28561dc22cbf835def7b481.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_am_carbon_fiber_light.png" + }, + { + "id": "skin-1704528", + "name": "PP-Bizon | Sand Dashed", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_tape_short_sand", + "name": "Sand Dashed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "148", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_tape_short_sand_light.png" + }, + { + "id": "skin-1704532", + "name": "PP-Bizon | Urban Dashed", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_tape_short_urban", + "name": "Urban Dashed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "149", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_tape_short_urban_light.png" + }, + { + "id": "skin-1704572", + "name": "PP-Bizon | Brass", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aq_brass", + "name": "Brass" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "159", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_aq_brass_light.png" + }, + { + "id": "skin-1704592", + "name": "PP-Bizon | Modern Hunter", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_hunter_modern", + "name": "Modern Hunter" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "164", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_hunter_modern_light.png" + }, + { + "id": "skin-1704620", + "name": "PP-Bizon | Irradiated Alert", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_nukestripe_brown", + "name": "Irradiated Alert" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "171", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_sp_nukestripe_brown_light.png" + }, + { + "id": "skin-1704748", + "name": "PP-Bizon | Rust Coat", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aq_steel_bravo", + "name": "Rust Coat" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "203", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_aq_steel_bravo_light.png" + }, + { + "id": "skin-1704832", + "name": "PP-Bizon | Water Sigil", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_water_crest", + "name": "Water Sigil" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "224", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_water_crest_light.png" + }, + { + "id": "skin-1704880", + "name": "PP-Bizon | Night Ops", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_varicamo_night", + "name": "Night Ops" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "236", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_varicamo_night_light.png" + }, + { + "id": "skin-1705004", + "name": "PP-Bizon | Cobalt Halftone", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_turqoise_halftone", + "name": "Cobalt Halftone" + }, + "min_float": 0.05, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "267", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_am_turqoise_halftone_light.png" + }, + { + "id": "skin-1705108", + "name": "PP-Bizon | Death Rattle", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_nerodia", + "name": "Death Rattle" + }, + "min_float": 0.08, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "293", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_nerodia_light.png" + }, + { + "id": "skin-1705160", + "name": "PP-Bizon | Antique", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_antique", + "name": "Antique" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "306", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_antique_light.png" + }, + { + "id": "skin-1705332", + "name": "PP-Bizon | Osiris", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon-osiris", + "name": "Osiris" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "349", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon-osiris_light.png" + }, + { + "id": "skin-1705440", + "name": "PP-Bizon | Chemical Green", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_grey_nuclear_green_bizon", + "name": "Chemical Green" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "376", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_so_grey_nuclear_green_bizon_light.png" + }, + { + "id": "skin-1705764", + "name": "PP-Bizon | Bamboo Print", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_bamboo_jungle_ink", + "name": "Bamboo Print" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "457", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_bamboo_jungle_ink_light.png" + }, + { + "id": "skin-1705968", + "name": "PP-Bizon | Fuel Rod", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_noxious", + "name": "Fuel Rod" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "508", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_noxious_light.png" + }, + { + "id": "skin-1706040", + "name": "PP-Bizon | Photic Zone", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_citizen", + "name": "Photic Zone" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "526", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_citizen_light.png" + }, + { + "id": "skin-1706104", + "name": "PP-Bizon | Judgement of Anubis", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_curse", + "name": "Judgement of Anubis" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "542", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_curse_light.png" + }, + { + "id": "skin-1706312", + "name": "PP-Bizon | Harvester", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_pp_bizon_harvester", + "name": "Harvester" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "594", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_gs_pp_bizon_harvester_light.png" + }, + { + "id": "skin-1706500", + "name": "PP-Bizon | Jungle Slipstream", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_bizon_torn_green", + "name": "Jungle Slipstream" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "641", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_bizon_torn_green_light.png" + }, + { + "id": "skin-1706640", + "name": "PP-Bizon | High Roller", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_all_in", + "name": "High Roller" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "676", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_all_in_light.png" + }, + { + "id": "skin-1706704", + "name": "PP-Bizon | Night Riot", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_riot", + "name": "Night Riot" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "692", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_riot_light.png" + }, + { + "id": "skin-1707036", + "name": "PP-Bizon | Facility Sketch", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_blueprint_white", + "name": "Facility Sketch" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "775", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_blueprint_white_light.png" + }, + { + "id": "skin-1707252", + "name": "PP-Bizon | Anolis", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_lizard_skin", + "name": "Anolis" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "829", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_hy_lizard_skin_light.png" + }, + { + "id": "skin-1707428", + "name": "PP-Bizon | Seabird", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_aqua_stmarc", + "name": "Seabird" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "873", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_so_aqua_stmarc_light.png" + }, + { + "id": "skin-1707472", + "name": "PP-Bizon | Embargo", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_road_warrior", + "name": "Embargo" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "884", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_road_warrior_light.png" + }, + { + "id": "skin-1707828", + "name": "PP-Bizon | Runic", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_bizon_hellraider", + "name": "Runic" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "973", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_gs_bizon_hellraider_light.png" + }, + { + "id": "skin-1708268", + "name": "PP-Bizon | Breaker Box", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_wiring", + "name": "Breaker Box" + }, + "min_float": 0, + "max_float": 0.44, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1083", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_aa_wiring_light.png" + }, + { + "id": "skin-1708332", + "name": "PP-Bizon | Lumen", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_bizon_flasher", + "name": "Lumen" + }, + "min_float": 0, + "max_float": 0.77, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1099", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_gs_bizon_flasher_light.png" + }, + { + "id": "skin-1708436", + "name": "PP-Bizon | Space Cat", + "description": "The Bizon SMG is low-damage, but offers a uniquely designed high-capacity drum magazine that reloads quickly.", + "weapon": { + "id": "weapon_bizon", + "name": "PP-Bizon" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_bizon_spacecat", + "name": "Space Cat" + }, + "min_float": 0, + "max_float": 0.67, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1125", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bizon_cu_bizon_spacecat_light.png" + }, + { + "id": "skin-1769600", + "name": "MAG-7 | Silver", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "an_silver", + "name": "Silver" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "32", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_an_silver_light.png" + }, + { + "id": "skin-1769608", + "name": "MAG-7 | Metallic DDPAT", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_urban", + "name": "Metallic DDPAT" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "34", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_urban_light.png" + }, + { + "id": "skin-1769628", + "name": "MAG-7 | Bulldozer", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_yellow", + "name": "Bulldozer" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "39", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_yellow_light.png" + }, + { + "id": "skin-1769752", + "name": "MAG-7 | Carbon Fiber", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_carbon_fiber", + "name": "Carbon Fiber" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "70", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_carbon_fiber_light.png" + }, + { + "id": "skin-1769868", + "name": "MAG-7 | Sand Dune", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_sand", + "name": "Sand Dune" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "99", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno", + "name": "The Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno.png" + } + ], + "crates": [ + { + "id": "crate-4023", + "name": "ESL One Cologne 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png" + }, + { + "id": "crate-4032", + "name": "DreamHack 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png" + }, + { + "id": "crate-4080", + "name": "ESL One Katowice 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png" + }, + { + "id": "crate-4133", + "name": "ESL One Cologne 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png" + }, + { + "id": "crate-4178", + "name": "DreamHack Cluj-Napoca 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png" + }, + { + "id": "crate-4227", + "name": "MLG Columbus 2016 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_inferno.bc1ef2fd8a91d14c6c2e7e2a444e2c05feb4956e.png" + }, + { + "id": "crate-4396", + "name": "Krakow 2017 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_inferno.740191615458fa81ee37a4f374220e5dd3ad91ea.png" + }, + { + "id": "crate-4463", + "name": "Boston 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_inferno.ebe33e799b076d3842b02bdddc98b783ea0f5ce4.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_sand_light.png" + }, + { + "id": "skin-1769872", + "name": "MAG-7 | Storm", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_stormfront", + "name": "Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "100", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_stormfront_light.png" + }, + { + "id": "skin-1770156", + "name": "MAG-7 | Irradiated Alert", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_nukestripe_brown", + "name": "Irradiated Alert" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "171", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_sp_nukestripe_brown_light.png" + }, + { + "id": "skin-1770180", + "name": "MAG-7 | Memento", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_icosahedron", + "name": "Memento" + }, + "min_float": 0.02, + "max_float": 0.18, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "177", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_icosahedron_light.png" + }, + { + "id": "skin-1770264", + "name": "MAG-7 | Hazard", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_hazard_bravo", + "name": "Hazard" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "198", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_sp_hazard_bravo_light.png" + }, + { + "id": "skin-1770636", + "name": "MAG-7 | Heaven Guard", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_mag7_heaven", + "name": "Heaven Guard" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "291", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_heaven_light.png" + }, + { + "id": "skin-1770780", + "name": "MAG-7 | Chainmail", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_chainmail", + "name": "Chainmail" + }, + "min_float": 0, + "max_float": 0.22, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "327", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_chainmail_light.png" + }, + { + "id": "skin-1771012", + "name": "MAG-7 | Firestarter", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_mag7_firebitten", + "name": "Firestarter" + }, + "min_float": 0.06, + "max_float": 0.49, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "385", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_sp_mag7_firebitten_light.png" + }, + { + "id": "skin-1771196", + "name": "MAG-7 | Heat", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_mag7_redhot", + "name": "Heat" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "431", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_redhot_light.png" + }, + { + "id": "skin-1771320", + "name": "MAG-7 | Counter Terrace", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_geometric_steps_green", + "name": "Counter Terrace" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "462", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_geometric_steps_green_light.png" + }, + { + "id": "skin-1771364", + "name": "MAG-7 | Seabird", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_aqua", + "name": "Seabird" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "473", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_so_aqua_light.png" + }, + { + "id": "skin-1771468", + "name": "MAG-7 | Cobalt Core", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_mag7_myrcene", + "name": "Cobalt Core" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "499", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_myrcene_light.png" + }, + { + "id": "skin-1771612", + "name": "MAG-7 | Praetorian", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_mag7_praetorian", + "name": "Praetorian" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "535", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_praetorian_light.png" + }, + { + "id": "skin-1771904", + "name": "MAG-7 | Petroglyph", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_mag7_tribal", + "name": "Petroglyph" + }, + "min_float": 0, + "max_float": 0.44, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "608", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_tribal_light.png" + }, + { + "id": "skin-1772004", + "name": "MAG-7 | Sonar", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_mag7_malform", + "name": "Sonar" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "633", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_mag7_malform_light.png" + }, + { + "id": "skin-1772136", + "name": "MAG-7 | Hard Water", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_mag7_caustic", + "name": "Hard Water" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "666", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_mag7_caustic_light.png" + }, + { + "id": "skin-1772284", + "name": "MAG-7 | SWAG-7", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_mag7_swag7", + "name": "SWAG-7" + }, + "min_float": 0, + "max_float": 0.92, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "703", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_aq_mag7_swag7_light.png" + }, + { + "id": "skin-1772420", + "name": "MAG-7 | Cinquedea", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_mag7_glass", + "name": "Cinquedea" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "737", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_glass_light.png" + }, + { + "id": "skin-1772488", + "name": "MAG-7 | Rust Coat", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_steel_inferno", + "name": "Rust Coat" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "754", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_aq_steel_inferno_light.png" + }, + { + "id": "skin-1772620", + "name": "MAG-7 | Core Breach", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_nuclear_hotorange", + "name": "Core Breach" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "787", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_nuclear_hotorange_light.png" + }, + { + "id": "skin-1772760", + "name": "MAG-7 | Navy Sheen", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_navy_shine", + "name": "Navy Sheen" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "822", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_am_navy_shine_light.png" + }, + { + "id": "skin-1773108", + "name": "MAG-7 | Popdog", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_mag7_popdog", + "name": "Popdog" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "909", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_popdog_light.png" + }, + { + "id": "skin-1773264", + "name": "MAG-7 | Justice", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_mag7_justice", + "name": "Justice" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "948", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_justice_light.png" + }, + { + "id": "skin-1773316", + "name": "MAG-7 | Monster Call", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_mag7_monster_call", + "name": "Monster Call" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "961", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_monster_call_light.png" + }, + { + "id": "skin-1773760", + "name": "MAG-7 | Prism Terrace", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_geometric_steps_pearl", + "name": "Prism Terrace" + }, + "min_float": 0, + "max_float": 0.37, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1072", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_hy_geometric_steps_pearl_light.png" + }, + { + "id": "skin-1773828", + "name": "MAG-7 | BI83 Spectrum", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_mag7_bismuth", + "name": "BI83 Spectrum" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1089", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_bismuth_light.png" + }, + { + "id": "skin-1774000", + "name": "MAG-7 | Foresight", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_mag7_predictor", + "name": "Foresight" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1132", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_predictor_light.png" + }, + { + "id": "skin-1774352", + "name": "MAG-7 | Insomnia", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_mag7_insomnia", + "name": "Insomnia" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1220", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_cu_mag7_insomnia_light.png" + }, + { + "id": "skin-1774452", + "name": "MAG-7 | Copper Coated", + "description": "The CT-exclusive Mag-7 delivers a devastating amount of damage at close range. Its rapid magazine-style reloads make it a great tactical choice.", + "weapon": { + "id": "weapon_mag7", + "name": "MAG-7" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_mag7_goold", + "name": "Copper Coated" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1245", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mag7_gs_mag7_goold_light.png" + }, + { + "id": "skin-1835120", + "name": "Negev | Anodized Navy", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "an_navy", + "name": "Anodized Navy" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "28", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-assault", + "name": "The Assault Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_assault.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_an_navy_light.png" + }, + { + "id": "skin-1835812", + "name": "Negev | Palm", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_palm_bravo", + "name": "Palm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "201", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_palm_bravo_light.png" + }, + { + "id": "skin-1835968", + "name": "Negev | CaliCamo", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_varicamo_desert", + "name": "CaliCamo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "240", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_varicamo_desert_light.png" + }, + { + "id": "skin-1836148", + "name": "Negev | Terrain", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_negev_turq_terrain", + "name": "Terrain" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "285", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_negev_turq_terrain_light.png" + }, + { + "id": "skin-1836200", + "name": "Negev | Army Sheen", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_army_shine", + "name": "Army Sheen" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "298", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_am_army_shine_light.png" + }, + { + "id": "skin-1836276", + "name": "Negev | Bratatat", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_bratatat_negev", + "name": "Bratatat" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "317", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_bratatat_negev_light.png" + }, + { + "id": "skin-1836428", + "name": "Negev | Desert-Strike", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_negev_titanstorm", + "name": "Desert-Strike" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "355", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_titanstorm_light.png" + }, + { + "id": "skin-1836484", + "name": "Negev | Nuclear Waste", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_nuclear_pattern3_negev", + "name": "Nuclear Waste" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "369", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_nuclear_pattern3_negev_light.png" + }, + { + "id": "skin-1836736", + "name": "Negev | Man-o'-war", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_negev_glory", + "name": "Man-o'-war" + }, + "min_float": 0.1, + "max_float": 0.2, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "432", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_am_negev_glory_light.png" + }, + { + "id": "skin-1836940", + "name": "Negev | Loudmouth", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_negev_annihilator", + "name": "Loudmouth" + }, + "min_float": 0.14, + "max_float": 0.65, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "483", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_annihilator_light.png" + }, + { + "id": "skin-1837064", + "name": "Negev | Power Loader", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_negev_impact", + "name": "Power Loader" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "514", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_impact_light.png" + }, + { + "id": "skin-1837448", + "name": "Negev | Dazzle", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_negev_dazzle", + "name": "Dazzle" + }, + "min_float": 0.1, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "610", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_negev_dazzle_light.png" + }, + { + "id": "skin-1837800", + "name": "Negev | Lionfish", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_negev_lionfish", + "name": "Lionfish" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "698", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_sp_negev_lionfish_light.png" + }, + { + "id": "skin-1838060", + "name": "Negev | Mjölnir", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_negev_thor", + "name": "Mjölnir" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "763", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_gs_negev_thor_light.png" + }, + { + "id": "skin-1838140", + "name": "Negev | Bulkhead", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_ducts_yellow", + "name": "Bulkhead" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "783", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_ducts_yellow_light.png" + }, + { + "id": "skin-1838688", + "name": "Negev | Boroque Sand", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_veneto_tan", + "name": "Boroque Sand" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "920", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_veneto_tan_light.png" + }, + { + "id": "skin-1838808", + "name": "Negev | Prototype", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_negev_prototype", + "name": "Prototype" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "950", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_prototype_light.png" + }, + { + "id": "skin-1838840", + "name": "Negev | Ultralight", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_negev_ultralight", + "name": "Ultralight" + }, + "min_float": 0, + "max_float": 0.79, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "958", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_ultralight_light.png" + }, + { + "id": "skin-1839056", + "name": "Negev | Phoenix Stencil", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_phoenix_tags_red", + "name": "Phoenix Stencil" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1012", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_phoenix_tags_red_light.png" + }, + { + "id": "skin-1839180", + "name": "Negev | dev_texture", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_negev_devtexture", + "name": "dev_texture" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1043", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_devtexture_light.png" + }, + { + "id": "skin-1839328", + "name": "Negev | Infrastructure", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_vertigospray", + "name": "Infrastructure" + }, + "min_float": 0, + "max_float": 0.49, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1080", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_hy_vertigospray_light.png" + }, + { + "id": "skin-1839616", + "name": "Negev | Drop Me", + "description": "The Negev is a beast that can keep the enemy at bay with its pin-point supressive fire, provided you have the luxury of time to gain control over it.", + "weapon": { + "id": "weapon_negev", + "name": "Negev" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_negev_clear_sky", + "name": "Drop Me" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1152", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_negev_cu_negev_clear_sky_light.png" + }, + { + "id": "skin-1900564", + "name": "Sawed-Off | Forest DDPAT", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_ddpat_light.png" + }, + { + "id": "skin-1900664", + "name": "Sawed-Off | Snake Camo", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_snake", + "name": "Snake Camo" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "30", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_snake_light.png" + }, + { + "id": "skin-1900708", + "name": "Sawed-Off | Copper", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_copper", + "name": "Copper" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "41", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_copper_light.png" + }, + { + "id": "skin-1900876", + "name": "Sawed-Off | Orange DDPAT", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_ddpat_orange", + "name": "Orange DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "83", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_ddpat_orange_light.png" + }, + { + "id": "skin-1901020", + "name": "Sawed-Off | Sage Spray", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_spray_desert_sage", + "name": "Sage Spray" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "119", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_spray_desert_sage_light.png" + }, + { + "id": "skin-1901228", + "name": "Sawed-Off | Irradiated Alert", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_nukestripe_brown", + "name": "Irradiated Alert" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "171", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_nukestripe_brown_light.png" + }, + { + "id": "skin-1901360", + "name": "Sawed-Off | Mosaico", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_ali_tile_bravo", + "name": "Mosaico" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "204", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_ali_tile_bravo_light.png" + }, + { + "id": "skin-1901528", + "name": "Sawed-Off | Amber Fade", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aa_fade_metallic", + "name": "Amber Fade" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "246", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aa_fade_metallic_light.png" + }, + { + "id": "skin-1901544", + "name": "Sawed-Off | Full Stop", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_varicamo_red", + "name": "Full Stop" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "250", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_varicamo_red_light.png" + }, + { + "id": "skin-1901568", + "name": "Sawed-Off | The Kraken", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_octopump", + "name": "The Kraken" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "256", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_octopump_light.png" + }, + { + "id": "skin-1901836", + "name": "Sawed-Off | Rust Coat", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_steel", + "name": "Rust Coat" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "323", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_steel_light.png" + }, + { + "id": "skin-1901924", + "name": "Sawed-Off | First Class", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_green_leather_sawedoff", + "name": "First Class" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "345", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_green_leather_sawedoff_light.png" + }, + { + "id": "skin-1902104", + "name": "Sawed-Off | Highwayman", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_sawedoff_blackgold", + "name": "Highwayman" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "390", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_sawedoff_blackgold_light.png" + }, + { + "id": "skin-1902164", + "name": "Sawed-Off | Serenity", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_deva", + "name": "Serenity" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "405", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_deva_light.png" + }, + { + "id": "skin-1902280", + "name": "Sawed-Off | Origami", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_origami", + "name": "Origami" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "434", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_origami_light.png" + }, + { + "id": "skin-1902376", + "name": "Sawed-Off | Bamboo Shadow", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_bamboo_jungle_black", + "name": "Bamboo Shadow" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "458", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_bamboo_jungle_black_light.png" + }, + { + "id": "skin-1902612", + "name": "Sawed-Off | Yorick", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_sawedoff_necromancer", + "name": "Yorick" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "517", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_gs_sawedoff_necromancer_light.png" + }, + { + "id": "skin-1902752", + "name": "Sawed-Off | Fubar", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_sawedoff_fubar", + "name": "Fubar" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "552", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_gs_sawedoff_fubar_light.png" + }, + { + "id": "skin-1902928", + "name": "Sawed-Off | Limelight", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawed_off_lime", + "name": "Limelight" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "596", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawed_off_lime_light.png" + }, + { + "id": "skin-1903096", + "name": "Sawed-Off | Wasteland Princess", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_wp_sawedoff", + "name": "Wasteland Princess" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "638", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_wp_sawedoff_light.png" + }, + { + "id": "skin-1903164", + "name": "Sawed-Off | Zander", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_sawedoff_zander2", + "name": "Zander" + }, + "min_float": 0.05, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "655", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_sawedoff_zander2_light.png" + }, + { + "id": "skin-1903236", + "name": "Sawed-Off | Morris", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_sawed-off_flower", + "name": "Morris" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "673", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aq_sawed-off_flower_light.png" + }, + { + "id": "skin-1903424", + "name": "Sawed-Off | Devourer", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_devourer", + "name": "Devourer" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "720", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_devourer_light.png" + }, + { + "id": "skin-1903732", + "name": "Sawed-Off | Brake Light", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aa_vertigo_red", + "name": "Brake Light" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "797", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_aa_vertigo_red_light.png" + }, + { + "id": "skin-1903800", + "name": "Sawed-Off | Black Sand", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_black_sand", + "name": "Black Sand" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "814", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_black_sand_light.png" + }, + { + "id": "skin-1904024", + "name": "Sawed-Off | Jungle Thicket", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_palm_green", + "name": "Jungle Thicket" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "870", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_sp_palm_green_light.png" + }, + { + "id": "skin-1904064", + "name": "Sawed-Off | Parched", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_desert_bloom", + "name": "Parched" + }, + "min_float": 0, + "max_float": 0.49, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "880", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_desert_bloom_light.png" + }, + { + "id": "skin-1904356", + "name": "Sawed-Off | Apocalypto", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_apocalypto", + "name": "Apocalypto" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "953", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_apocalypto_light.png" + }, + { + "id": "skin-1904600", + "name": "Sawed-Off | Clay Ambush", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_tigers_tan", + "name": "Clay Ambush" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1014", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_hy_tigers_tan_light.png" + }, + { + "id": "skin-1905104", + "name": "Sawed-Off | Spirit Board", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_ouija", + "name": "Spirit Board" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1140", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_ouija_light.png" + }, + { + "id": "skin-1905164", + "name": "Sawed-Off | Kiss♥Love", + "description": "The classic Sawed-Off deals very heavy close-range damage, but with its low accuracy, high spread and slow rate of fire, you'd better kill what you hit.", + "weapon": { + "id": "weapon_sawedoff", + "name": "Sawed-Off" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_sawedoff_kisslove", + "name": "Kiss♥Love" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1155", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sawedoff_cu_sawedoff_kisslove_light.png" + }, + { + "id": "skin-1966088", + "name": "Tec-9 | Groundwater", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_olive", + "name": "Groundwater" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "2", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_so_olive_light.png" + }, + { + "id": "skin-1966148", + "name": "Tec-9 | Urban DDPAT", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_ddpat_urb", + "name": "Urban DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "17", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_ddpat_urb_light.png" + }, + { + "id": "skin-1966224", + "name": "Tec-9 | Ossified", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ossify", + "name": "Ossified" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "36", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-aztec", + "name": "The Aztec Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_aztec.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_ossify_light.png" + }, + { + "id": "skin-1966716", + "name": "Tec-9 | Brass", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_brass", + "name": "Brass" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "159", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno", + "name": "The Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno.png" + } + ], + "crates": [ + { + "id": "crate-4023", + "name": "ESL One Cologne 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png" + }, + { + "id": "crate-4032", + "name": "DreamHack 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png" + }, + { + "id": "crate-4080", + "name": "ESL One Katowice 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png" + }, + { + "id": "crate-4133", + "name": "ESL One Cologne 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png" + }, + { + "id": "crate-4178", + "name": "DreamHack Cluj-Napoca 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png" + }, + { + "id": "crate-4227", + "name": "MLG Columbus 2016 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_inferno.bc1ef2fd8a91d14c6c2e7e2a444e2c05feb4956e.png" + }, + { + "id": "crate-4396", + "name": "Krakow 2017 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_inferno.740191615458fa81ee37a4f374220e5dd3ad91ea.png" + }, + { + "id": "crate-4463", + "name": "Boston 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_inferno.ebe33e799b076d3842b02bdddc98b783ea0f5ce4.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_aq_brass_light.png" + }, + { + "id": "skin-1966796", + "name": "Tec-9 | Nuclear Threat", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_nukestripe_green_tec9", + "name": "Nuclear Threat" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "179", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_sp_nukestripe_green_tec9_light.png" + }, + { + "id": "skin-1966904", + "name": "Tec-9 | Tornado", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_tornado_bravo", + "name": "Tornado" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "206", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_so_tornado_bravo_light.png" + }, + { + "id": "skin-1966944", + "name": "Tec-9 | Blue Titanium", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "an_titanium30v", + "name": "Blue Titanium" + }, + "min_float": 0, + "max_float": 0.04, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "216", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_an_titanium30v_light.png" + }, + { + "id": "skin-1967020", + "name": "Tec-9 | VariCamo", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_varicamo", + "name": "VariCamo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "235", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_varicamo_light.png" + }, + { + "id": "skin-1967048", + "name": "Tec-9 | Army Mesh", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_mesh_army", + "name": "Army Mesh" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "242", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_sp_mesh_army_light.png" + }, + { + "id": "skin-1967072", + "name": "Tec-9 | Red Quartz", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_crystallized", + "name": "Red Quartz" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "248", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_crystallized_light.png" + }, + { + "id": "skin-1967168", + "name": "Tec-9 | Titanium Bit", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_fluted_tec9", + "name": "Titanium Bit" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "272", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_fluted_tec9_light.png" + }, + { + "id": "skin-1967236", + "name": "Tec-9 | Sandstorm", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_sandstorm", + "name": "Sandstorm" + }, + "min_float": 0.1, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "289", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_sandstorm_light.png" + }, + { + "id": "skin-1967292", + "name": "Tec-9 | Isaac", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_asiimov", + "name": "Isaac" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "303", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_asiimov_light.png" + }, + { + "id": "skin-1967576", + "name": "Tec-9 | Toxic", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_nuclear_skulls5_tec9", + "name": "Toxic" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "374", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_nuclear_skulls5_tec9_light.png" + }, + { + "id": "skin-1967836", + "name": "Tec-9 | Hades", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_hades", + "name": "Hades" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "439", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_hades_light.png" + }, + { + "id": "skin-1967916", + "name": "Tec-9 | Bamboo Forest", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_bamboo_jungle", + "name": "Bamboo Forest" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "459", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_bamboo_jungle_light.png" + }, + { + "id": "skin-1967932", + "name": "Tec-9 | Terrace", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_geometric_steps_yellow", + "name": "Terrace" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "463", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_geometric_steps_yellow_light.png" + }, + { + "id": "skin-1968160", + "name": "Tec-9 | Avalanche", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_avalanche", + "name": "Avalanche" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "520", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_avalanche_light.png" + }, + { + "id": "skin-1968236", + "name": "Tec-9 | Jambiya", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_tec9_jambiya", + "name": "Jambiya" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "539", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_jambiya_light.png" + }, + { + "id": "skin-1968300", + "name": "Tec-9 | Re-Entry", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_tec9_redblast", + "name": "Re-Entry" + }, + "min_float": 0, + "max_float": 0.43, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "555", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_tec9_redblast_light.png" + }, + { + "id": "skin-1968476", + "name": "Tec-9 | Ice Cap", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_tec_9_sea_salt", + "name": "Ice Cap" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "599", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_am_tec_9_sea_salt_light.png" + }, + { + "id": "skin-1968536", + "name": "Tec-9 | Fuel Injector", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_tec9_supercharged", + "name": "Fuel Injector" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "614", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_supercharged_light.png" + }, + { + "id": "skin-1968764", + "name": "Tec-9 | Cut Out", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_tec9_chalk_pattern", + "name": "Cut Out" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "671", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_aq_tec9_chalk_pattern_light.png" + }, + { + "id": "skin-1968816", + "name": "Tec-9 | Cracked Opal", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_cracked_opal", + "name": "Cracked Opal" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "684", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_cracked_opal_light.png" + }, + { + "id": "skin-1968968", + "name": "Tec-9 | Snek-9", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_snake", + "name": "Snek-9" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "722", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_snake_light.png" + }, + { + "id": "skin-1969012", + "name": "Tec-9 | Rust Leaf", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_leaf_orange", + "name": "Rust Leaf" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "733", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_sp_leaf_orange_light.png" + }, + { + "id": "skin-1969032", + "name": "Tec-9 | Orange Murano", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_murano_orange", + "name": "Orange Murano" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "738", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_murano_orange_light.png" + }, + { + "id": "skin-1969244", + "name": "Tec-9 | Remote Control", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_tec9_envoy", + "name": "Remote Control" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "791", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_envoy_light.png" + }, + { + "id": "skin-1969260", + "name": "Tec-9 | Safety Net", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_mesh_safetyorange", + "name": "Safety Net" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "795", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_mesh_safetyorange_light.png" + }, + { + "id": "skin-1969344", + "name": "Tec-9 | Fubar", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_tec9_fubar", + "name": "Fubar" + }, + "min_float": 0.14, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "816", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_fubar_light.png" + }, + { + "id": "skin-1969436", + "name": "Tec-9 | Bamboozle", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_bamboo", + "name": "Bamboozle" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "839", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_bamboo_light.png" + }, + { + "id": "skin-1969636", + "name": "Tec-9 | Decimator", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_tec9_decimator", + "name": "Decimator" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "889", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_decimator_light.png" + }, + { + "id": "skin-1969700", + "name": "Tec-9 | Flash Out", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_flash", + "name": "Flash Out" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "905", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_flash_light.png" + }, + { + "id": "skin-1969936", + "name": "Tec-9 | Brother", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_tec9_guerilla", + "name": "Brother" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "964", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_gs_tec9_guerilla_light.png" + }, + { + "id": "skin-1970120", + "name": "Tec-9 | Phoenix Chalk", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_phoenix_tags_lilac", + "name": "Phoenix Chalk" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1010", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_phoenix_tags_lilac_light.png" + }, + { + "id": "skin-1970176", + "name": "Tec-9 | Blast From the Past", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_ancient_tiles_peach", + "name": "Blast From the Past" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1024", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_hy_ancient_tiles_peach_light.png" + }, + { + "id": "skin-1971020", + "name": "Tec-9 | Rebel", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_freedom", + "name": "Rebel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1235", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_freedom_light.png" + }, + { + "id": "skin-1971088", + "name": "Tec-9 | Mummy's Rot", + "description": "An ideal pistol for the Terrorist on the move, the Tec-9 is lethal in close quarters and features a high magazine capacity.", + "weapon": { + "id": "weapon_tec9", + "name": "Tec-9" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_tec9_mummy", + "name": "Mummy's Rot" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1252", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_tec9_cu_tec9_mummy_light.png" + }, + { + "id": "skin-2097236", + "name": "P2000 | Granite Marbleized", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_granite", + "name": "Granite Marbleized" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "21", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_hy_granite_light.png" + }, + { + "id": "skin-2097280", + "name": "P2000 | Silver", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "an_silver", + "name": "Silver" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "32", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-office", + "name": "The Office Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_office.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_an_silver_light.png" + }, + { + "id": "skin-2097436", + "name": "P2000 | Scorpion", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_scorpion_p2000", + "name": "Scorpion" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "71", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_scorpion_p2000_light.png" + }, + { + "id": "skin-2097532", + "name": "P2000 | Grassland", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_grassland", + "name": "Grassland" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "95", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_so_grassland_light.png" + }, + { + "id": "skin-2097568", + "name": "P2000 | Grassland Leaves", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_leaves_grassland", + "name": "Grassland Leaves" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "104", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_sp_leaves_grassland_light.png" + }, + { + "id": "skin-2097888", + "name": "P2000 | Corticera", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_favela_p2000", + "name": "Corticera" + }, + "min_float": 0.06, + "max_float": 0.3, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "184", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_favela_p2000_light.png" + }, + { + "id": "skin-2097996", + "name": "P2000 | Ocean Foam", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ossify_blue_p2000_bravo", + "name": "Ocean Foam" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "211", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_light.png" + }, + { + "id": "skin-2098136", + "name": "P2000 | Amber Fade", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_fade_metallic", + "name": "Amber Fade" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "246", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aa_fade_metallic_light.png" + }, + { + "id": "skin-2098252", + "name": "P2000 | Red FragCam", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_poly_camo", + "name": "Red FragCam" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "275", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_hy_poly_camo_light.png" + }, + { + "id": "skin-2098460", + "name": "P2000 | Chainmail", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_chainmail", + "name": "Chainmail" + }, + "min_float": 0, + "max_float": 0.22, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "327", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_chainmail_light.png" + }, + { + "id": "skin-2098504", + "name": "P2000 | Pulse", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2000_pulse", + "name": "Pulse" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "338", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_pulse_light.png" + }, + { + "id": "skin-2098536", + "name": "P2000 | Coach Class", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_luggage_p2000", + "name": "Coach Class" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "346", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_luggage_p2000_light.png" + }, + { + "id": "skin-2098580", + "name": "P2000 | Ivory", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2000_ivory", + "name": "Ivory" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "357", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_ivory_light.png" + }, + { + "id": "skin-2098708", + "name": "P2000 | Fire Elemental", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2000_fire_elemental", + "name": "Fire Elemental" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "389", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_light.png" + }, + { + "id": "skin-2098924", + "name": "P2000 | Pathfinder", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_labyrinth2", + "name": "Pathfinder" + }, + "min_float": 0, + "max_float": 0.35, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "443", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_sp_labyrinth2_light.png" + }, + { + "id": "skin-2099092", + "name": "P2000 | Handgun", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_p2000_boom", + "name": "Handgun" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "485", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aq_p2000_boom_light.png" + }, + { + "id": "skin-2099212", + "name": "P2000 | Imperial", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_p2000_imperial_red", + "name": "Imperial" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "515", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_light.png" + }, + { + "id": "skin-2099352", + "name": "P2000 | Oceanic", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_p2000_oceani", + "name": "Oceanic" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "550", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_hy_p2000_oceani_light.png" + }, + { + "id": "skin-2099516", + "name": "P2000 | Imperial Dragon", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p2000_imperial_dragon", + "name": "Imperial Dragon" + }, + "min_float": 0, + "max_float": 0.63, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "591", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_gs_p2000_imperial_dragon_light.png" + }, + { + "id": "skin-2099692", + "name": "P2000 | Turf", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p2000-sport", + "name": "Turf" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "635", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_gs_p2000-sport_light.png" + }, + { + "id": "skin-2099820", + "name": "P2000 | Woodsman", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2000_hunter", + "name": "Woodsman" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "667", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_hunter_light.png" + }, + { + "id": "skin-2099952", + "name": "P2000 | Urban Hazard", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2000_urban_hazard", + "name": "Urban Hazard" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "700", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_urban_hazard_light.png" + }, + { + "id": "skin-2100728", + "name": "P2000 | Obsidian", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2000_obsidian", + "name": "Obsidian" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "894", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_obsidian_light.png" + }, + { + "id": "skin-2100956", + "name": "P2000 | Acid Etched", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_p2000_acid_clover", + "name": "Acid Etched" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "951", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aq_p2000_acid_clover_light.png" + }, + { + "id": "skin-2100992", + "name": "P2000 | Gnarled", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_p2000_lost_world", + "name": "Gnarled" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "960", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aq_p2000_lost_world_light.png" + }, + { + "id": "skin-2101140", + "name": "P2000 | Dispatch", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_numbers_red_blue", + "name": "Dispatch" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "997", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_numbers_red_blue_light.png" + }, + { + "id": "skin-2101228", + "name": "P2000 | Panther Camo", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_black_panther", + "name": "Panther Camo" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1019", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_am_black_panther_light.png" + }, + { + "id": "skin-2101372", + "name": "P2000 | Space Race", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_spacerace_orange", + "name": "Space Race" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1055", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_aa_spacerace_orange_light.png" + }, + { + "id": "skin-2101704", + "name": "P2000 | Lifted Spirits", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2k_flying_dream", + "name": "Lifted Spirits" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1138", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2k_flying_dream_light.png" + }, + { + "id": "skin-2102048", + "name": "P2000 | Wicked Sick", + "description": "Accurate and controllable, the German-made P2000 is a serviceable first-round pistol that works best against unarmored opponents.", + "weapon": { + "id": "weapon_hkp2000", + "name": "P2000" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p2000_decline", + "name": "Wicked Sick" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1224", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_hkp2000_cu_p2000_decline_light.png" + }, + { + "id": "skin-2162708", + "name": "MP7 | Forest DDPAT", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_ddpat_light.png" + }, + { + "id": "skin-2162732", + "name": "MP7 | Skulls", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_skulls", + "name": "Skulls" + }, + "min_float": 0.1, + "max_float": 0.26, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "11", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_skulls_light.png" + }, + { + "id": "skin-2162748", + "name": "MP7 | Gunsmoke", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_gelpen", + "name": "Gunsmoke" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "15", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_gelpen_light.png" + }, + { + "id": "skin-2162800", + "name": "MP7 | Anodized Navy", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "an_navy", + "name": "Anodized Navy" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "28", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_an_navy_light.png" + }, + { + "id": "skin-2163096", + "name": "MP7 | Whiteout", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_whiteout", + "name": "Whiteout" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "102", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-office", + "name": "The Office Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_office.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_so_whiteout_light.png" + }, + { + "id": "skin-2163252", + "name": "MP7 | Orange Peel", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_tape_orange", + "name": "Orange Peel" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "141", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_tape_orange_light.png" + }, + { + "id": "skin-2163388", + "name": "MP7 | Scorched", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_dapple_light.png" + }, + { + "id": "skin-2163524", + "name": "MP7 | Groundwater", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_olive_bravo", + "name": "Groundwater" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "209", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_so_olive_bravo_light.png" + }, + { + "id": "skin-2163540", + "name": "MP7 | Ocean Foam", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_ossify_blue", + "name": "Ocean Foam" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "213", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_am_ossify_blue_light.png" + }, + { + "id": "skin-2163668", + "name": "MP7 | Army Recon", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_spray_army", + "name": "Army Recon" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "245", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_spray_army_light.png" + }, + { + "id": "skin-2163688", + "name": "MP7 | Full Stop", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_varicamo_red", + "name": "Full Stop" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "250", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_varicamo_red_light.png" + }, + { + "id": "skin-2164104", + "name": "MP7 | Urban Hazard", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp7-commander", + "name": "Urban Hazard" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "354", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7-commander_light.png" + }, + { + "id": "skin-2164148", + "name": "MP7 | Olive Plaid", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_plaid1", + "name": "Olive Plaid" + }, + "min_float": 0, + "max_float": 0.58, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "365", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_plaid1_light.png" + }, + { + "id": "skin-2164380", + "name": "MP7 | Armor Core", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aq_mp7_ultramodern", + "name": "Armor Core" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "423", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_aq_mp7_ultramodern_light.png" + }, + { + "id": "skin-2164456", + "name": "MP7 | Asterion", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_labyrinth", + "name": "Asterion" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "442", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_labyrinth_light.png" + }, + { + "id": "skin-2164612", + "name": "MP7 | Nemesis", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp7_nemsis", + "name": "Nemesis" + }, + "min_float": 0, + "max_float": 0.32, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "481", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_nemsis_light.png" + }, + { + "id": "skin-2164688", + "name": "MP7 | Special Delivery", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp7_classified", + "name": "Special Delivery" + }, + "min_float": 0, + "max_float": 0.62, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "500", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_classified_light.png" + }, + { + "id": "skin-2164832", + "name": "MP7 | Impire", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_mp7_impire", + "name": "Impire" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "536", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_mp7_impire_light.png" + }, + { + "id": "skin-2165196", + "name": "MP7 | Cirrus", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_final_pooldeadv2", + "name": "Cirrus" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "627", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_final_pooldeadv2_light.png" + }, + { + "id": "skin-2165284", + "name": "MP7 | Akoben", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_mp7_tribal_yellow", + "name": "Akoben" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "649", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_mp7_tribal_yellow_light.png" + }, + { + "id": "skin-2165472", + "name": "MP7 | Bloodsport", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp7_bloodsport", + "name": "Bloodsport" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "696", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_mp7_bloodsport_light.png" + }, + { + "id": "skin-2165564", + "name": "MP7 | Powercore", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_powercore_mp7", + "name": "Powercore" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "719", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_powercore_mp7_light.png" + }, + { + "id": "skin-2165600", + "name": "MP7 | Teal Blossom", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_bud_green", + "name": "Teal Blossom" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "728", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_bud_green_light.png" + }, + { + "id": "skin-2165696", + "name": "MP7 | Fade", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_fade_mp7", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.25, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "752", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_aa_fade_mp7_light.png" + }, + { + "id": "skin-2165816", + "name": "MP7 | Motherboard", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_circuitboard_green", + "name": "Motherboard" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "782", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_am_circuitboard_green_light.png" + }, + { + "id": "skin-2166076", + "name": "MP7 | Mischief", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp7_racketeer", + "name": "Mischief" + }, + "min_float": 0.1, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "847", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_racketeer_light.png" + }, + { + "id": "skin-2166260", + "name": "MP7 | Neon Ply", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp7_replica", + "name": "Neon Ply" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "893", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_replica_light.png" + }, + { + "id": "skin-2166428", + "name": "MP7 | Prey", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_zebracam_red", + "name": "Prey" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "935", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_sp_zebracam_red_light.png" + }, + { + "id": "skin-2166716", + "name": "MP7 | Vault Heist", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_heist_plans_yellow", + "name": "Vault Heist" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1007", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_am_heist_plans_yellow_light.png" + }, + { + "id": "skin-2166780", + "name": "MP7 | Tall Grass", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_drywood_green", + "name": "Tall Grass" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1023", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_hy_drywood_green_light.png" + }, + { + "id": "skin-2167072", + "name": "MP7 | Guerrilla", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp7_khaki", + "name": "Guerrilla" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1096", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_khaki_light.png" + }, + { + "id": "skin-2167220", + "name": "MP7 | Abyssal Apparition", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp7_fear", + "name": "Abyssal Apparition" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1133", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_cu_mp7_fear_light.png" + }, + { + "id": "skin-2167672", + "name": "MP7 | Sunbaked", + "description": "Versatile but expensive, the German-made MP7 SMG is the perfect choice for high-impact close-range combat.", + "weapon": { + "id": "weapon_mp7", + "name": "MP7" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp7_strone", + "name": "Sunbaked" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1246", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp7_gs_mp7_strone_light.png" + }, + { + "id": "skin-2228356", + "name": "MP9 | Hot Rod", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "an_red", + "name": "Hot Rod" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "33", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_an_red_light.png" + }, + { + "id": "skin-2228380", + "name": "MP9 | Bulldozer", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_yellow", + "name": "Bulldozer" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "39", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-assault", + "name": "The Assault Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_assault.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_so_yellow_light.png" + }, + { + "id": "skin-2228468", + "name": "MP9 | Hypnotic", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_vertigo", + "name": "Hypnotic" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "61", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_vertigo_light.png" + }, + { + "id": "skin-2228624", + "name": "MP9 | Storm", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "so_stormfront", + "name": "Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "100", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_so_stormfront_light.png" + }, + { + "id": "skin-2228788", + "name": "MP9 | Orange Peel", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_tape_orange", + "name": "Orange Peel" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "141", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_tape_orange_light.png" + }, + { + "id": "skin-2228816", + "name": "MP9 | Sand Dashed", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_tape_short_sand", + "name": "Sand Dashed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "148", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_tape_short_sand_light.png" + }, + { + "id": "skin-2229020", + "name": "MP9 | Dry Season", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_tape_dots_bravo", + "name": "Dry Season" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "199", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_tape_dots_bravo_light.png" + }, + { + "id": "skin-2229272", + "name": "MP9 | Rose Iron", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_thorny_rose_mp9", + "name": "Rose Iron" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "262", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_thorny_rose_mp9_light.png" + }, + { + "id": "skin-2229416", + "name": "MP9 | Army Sheen", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_army_shine", + "name": "Army Sheen" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "298", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_army_shine_light.png" + }, + { + "id": "skin-2229540", + "name": "MP9 | Dark Age", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_metal_inlay", + "name": "Dark Age" + }, + "min_float": 0, + "max_float": 0.22, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "329", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_metal_inlay_light.png" + }, + { + "id": "skin-2229688", + "name": "MP9 | Green Plaid", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_plaid2", + "name": "Green Plaid" + }, + "min_float": 0, + "max_float": 0.58, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "366", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_hy_plaid2_light.png" + }, + { + "id": "skin-2229696", + "name": "MP9 | Setting Sun", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_nuclear_pattern2_mp9", + "name": "Setting Sun" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "368", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_hy_nuclear_pattern2_mp9_light.png" + }, + { + "id": "skin-2229768", + "name": "MP9 | Dart", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_chevron", + "name": "Dart" + }, + "min_float": 0, + "max_float": 0.46, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "386", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_chevron_light.png" + }, + { + "id": "skin-2229836", + "name": "MP9 | Deadly Poison", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_deadly_poison", + "name": "Deadly Poison" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "403", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_deadly_poison_light.png" + }, + { + "id": "skin-2230016", + "name": "MP9 | Pandora's Box", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_pandora", + "name": "Pandora's Box" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "448", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_pandora_light.png" + }, + { + "id": "skin-2230152", + "name": "MP9 | Ruby Poison Dart", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_mp9_nitrogen", + "name": "Ruby Poison Dart" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "482", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_mp9_nitrogen_light.png" + }, + { + "id": "skin-2230420", + "name": "MP9 | Bioleak", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_mp9_bioleak", + "name": "Bioleak" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "549", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_mp9_bioleak_light.png" + }, + { + "id": "skin-2230660", + "name": "MP9 | Airlock", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_narcis", + "name": "Airlock" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "609", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_narcis_light.png" + }, + { + "id": "skin-2230744", + "name": "MP9 | Sand Scale", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_hide-mp9", + "name": "Sand Scale" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "630", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_hide-mp9_light.png" + }, + { + "id": "skin-2230940", + "name": "MP9 | Goo", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_goo", + "name": "Goo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "679", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_goo_light.png" + }, + { + "id": "skin-2231012", + "name": "MP9 | Black Sand", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_black_sand", + "name": "Black Sand" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "697", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_black_sand_light.png" + }, + { + "id": "skin-2231084", + "name": "MP9 | Capillary", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_vein", + "name": "Capillary" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "715", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_vein_light.png" + }, + { + "id": "skin-2231160", + "name": "MP9 | Wild Lily", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_island_floral", + "name": "Wild Lily" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "734", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_island_floral_light.png" + }, + { + "id": "skin-2231244", + "name": "MP9 | Slide", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "hy_splatter3", + "name": "Slide" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "755", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_hy_splatter3_light.png" + }, + { + "id": "skin-2231440", + "name": "MP9 | Modest Threat", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp9_colony01", + "name": "Modest Threat" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "804", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_gs_mp9_colony01_light.png" + }, + { + "id": "skin-2231504", + "name": "MP9 | Music Box", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_mirage_flowers_metalic", + "name": "Music Box" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "820", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_mirage_flowers_metalic_light.png" + }, + { + "id": "skin-2231692", + "name": "MP9 | Stained Glass", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "am_stained_glass", + "name": "Stained Glass" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "867", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_am_stained_glass_light.png" + }, + { + "id": "skin-2231864", + "name": "MP9 | Hydra", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_hydra", + "name": "Hydra" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "910", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_hydra_light.png" + }, + { + "id": "skin-2231948", + "name": "MP9 | Old Roots", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "sp_moro_carving_yellow", + "name": "Old Roots" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "931", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_sp_moro_carving_yellow_light.png" + }, + { + "id": "skin-2232372", + "name": "MP9 | Food Chain", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_food_chain", + "name": "Food Chain" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1037", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_food_chain_light.png" + }, + { + "id": "skin-2232600", + "name": "MP9 | Mount Fuji", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "aa_mp9_fuji_pink", + "name": "Mount Fuji" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1094", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_aa_mp9_fuji_pink_light.png" + }, + { + "id": "skin-2232760", + "name": "MP9 | Starlight Protector", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "gs_mp9_starlight", + "name": "Starlight Protector" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1134", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_gs_mp9_starlight_light.png" + }, + { + "id": "skin-2233124", + "name": "MP9 | Featherweight", + "description": "Manufactured in Switzerland, the cutting-edge MP9 SMG is an ergonomic polymer weapon favored by private security firms.", + "weapon": { + "id": "weapon_mp9", + "name": "MP9" + }, + "category": { + "id": "csgo_inventory_weapon_category_smgs", + "name": "SMGs" + }, + "pattern": { + "id": "cu_mp9_superlight", + "name": "Featherweight" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1225", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_mp9_cu_mp9_superlight_light.png" + }, + { + "id": "skin-2293772", + "name": "Nova | Candy Apple", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_red", + "name": "Candy Apple" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "3", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_so_red_light.png" + }, + { + "id": "skin-2293860", + "name": "Nova | Forest Leaves", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_leaves", + "name": "Forest Leaves" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "25", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-aztec", + "name": "The Aztec Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_aztec.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_leaves_light.png" + }, + { + "id": "skin-2294008", + "name": "Nova | Bloomstick", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_spring_nova", + "name": "Bloomstick" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "62", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_spring_nova_light.png" + }, + { + "id": "skin-2294156", + "name": "Nova | Sand Dune", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_sand", + "name": "Sand Dune" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "99", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_so_sand_light.png" + }, + { + "id": "skin-2294188", + "name": "Nova | Polar Mesh", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_mesh_arctic_contrast", + "name": "Polar Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "107", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_mesh_arctic_contrast_light.png" + }, + { + "id": "skin-2294392", + "name": "Nova | Walnut", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_walnut_nova", + "name": "Walnut" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "158", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno", + "name": "The Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno.png" + } + ], + "crates": [ + { + "id": "crate-4023", + "name": "ESL One Cologne 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png" + }, + { + "id": "crate-4032", + "name": "DreamHack 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png" + }, + { + "id": "crate-4080", + "name": "ESL One Katowice 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png" + }, + { + "id": "crate-4133", + "name": "ESL One Cologne 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png" + }, + { + "id": "crate-4178", + "name": "DreamHack Cluj-Napoca 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png" + }, + { + "id": "crate-4227", + "name": "MLG Columbus 2016 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_inferno.bc1ef2fd8a91d14c6c2e7e2a444e2c05feb4956e.png" + }, + { + "id": "crate-4396", + "name": "Krakow 2017 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_inferno.740191615458fa81ee37a4f374220e5dd3ad91ea.png" + }, + { + "id": "crate-4463", + "name": "Boston 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_inferno.ebe33e799b076d3842b02bdddc98b783ea0f5ce4.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_walnut_nova_light.png" + }, + { + "id": "skin-2294416", + "name": "Nova | Modern Hunter", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_hunter_modern", + "name": "Modern Hunter" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "164", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_hunter_modern_light.png" + }, + { + "id": "skin-2294424", + "name": "Nova | Blaze Orange", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_hunter_blaze_orange", + "name": "Blaze Orange" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "166", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_hunter_blaze_orange_light.png" + }, + { + "id": "skin-2294440", + "name": "Nova | Predator", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_zebracam", + "name": "Predator" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "170", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_zebracam_light.png" + }, + { + "id": "skin-2294524", + "name": "Nova | Tempest", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_seaside_bravo", + "name": "Tempest" + }, + "min_float": 0.06, + "max_float": 0.22, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "191", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_seaside_bravo_light.png" + }, + { + "id": "skin-2294616", + "name": "Nova | Graphite", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_crumple", + "name": "Graphite" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "214", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_crumple_light.png" + }, + { + "id": "skin-2294660", + "name": "Nova | Ghost Camo", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_camo_wood_blue", + "name": "Ghost Camo" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "225", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_camo_wood_blue_light.png" + }, + { + "id": "skin-2294752", + "name": "Nova | Red Quartz", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_crystallized", + "name": "Red Quartz" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "248", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_crystallized_light.png" + }, + { + "id": "skin-2294812", + "name": "Nova | Rising Skull", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_skull_nova", + "name": "Rising Skull" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "263", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_skull_nova_light.png" + }, + { + "id": "skin-2294904", + "name": "Nova | Antique", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_nova_antique", + "name": "Antique" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "286", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_antique_light.png" + }, + { + "id": "skin-2294936", + "name": "Nova | Green Apple", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "so_green", + "name": "Green Apple" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "294", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_so_green_light.png" + }, + { + "id": "skin-2294952", + "name": "Nova | Army Sheen", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_army_shine", + "name": "Army Sheen" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "298", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_army_shine_light.png" + }, + { + "id": "skin-2294956", + "name": "Nova | Caged Steel", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_oval_hex", + "name": "Caged Steel" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "299", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_oval_hex_light.png" + }, + { + "id": "skin-2295052", + "name": "Nova | Rust Coat", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_steel", + "name": "Rust Coat" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "323", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_aq_steel_light.png" + }, + { + "id": "skin-2295184", + "name": "Nova | Koi", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_nova_koi", + "name": "Koi" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "356", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_koi_light.png" + }, + { + "id": "skin-2295560", + "name": "Nova | Moon in Libra", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_zodiac1", + "name": "Moon in Libra" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "450", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_zodiac1_light.png" + }, + { + "id": "skin-2295696", + "name": "Nova | Ranger", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_nova_ranger", + "name": "Ranger" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "484", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_ranger_light.png" + }, + { + "id": "skin-2295908", + "name": "Nova | Hyper Beast", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_nova_hyperbeast", + "name": "Hyper Beast" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "537", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_hyperbeast_light.png" + }, + { + "id": "skin-2296120", + "name": "Nova | Exo", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "aq_nova_sci_fi", + "name": "Exo" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "590", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_aq_nova_sci_fi_light.png" + }, + { + "id": "skin-2296296", + "name": "Nova | Gila", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_nova_sand", + "name": "Gila" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "634", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_nova_sand_light.png" + }, + { + "id": "skin-2296556", + "name": "Nova | Wild Six", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_nova_anchorite", + "name": "Wild Six" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "699", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_gs_nova_anchorite_light.png" + }, + { + "id": "skin-2296624", + "name": "Nova | Toy Soldier", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_nova_toy_soldier", + "name": "Toy Soldier" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "716", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_toy_soldier_light.png" + }, + { + "id": "skin-2296744", + "name": "Nova | Baroque Orange", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "am_veneto2", + "name": "Baroque Orange" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "746", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_am_veneto2_light.png" + }, + { + "id": "skin-2296900", + "name": "Nova | Mandrel", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_ducts_grey", + "name": "Mandrel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "785", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_ducts_grey_light.png" + }, + { + "id": "skin-2296996", + "name": "Nova | Wood Fired", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_nova_hunter_brute", + "name": "Wood Fired" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "809", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_gs_nova_hunter_brute_light.png" + }, + { + "id": "skin-2297320", + "name": "Nova | Plume", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_nova_featherswing", + "name": "Plume" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "890", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_featherswing_light.png" + }, + { + "id": "skin-2297476", + "name": "Nova | Quick Sand", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_torn_camo_paints", + "name": "Quick Sand" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "929", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_torn_camo_paints_light.png" + }, + { + "id": "skin-2297708", + "name": "Nova | Clear Polymer", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "cu_nova_polymer", + "name": "Clear Polymer" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "987", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_cu_nova_polymer_light.png" + }, + { + "id": "skin-2297964", + "name": "Nova | Windblown", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "sp_nova_wind_dispersal", + "name": "Windblown" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1051", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_sp_nova_wind_dispersal_light.png" + }, + { + "id": "skin-2298068", + "name": "Nova | Interlock", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "hy_vertigoillusion_yellow", + "name": "Interlock" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1077", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_hy_vertigoillusion_yellow_light.png" + }, + { + "id": "skin-2298748", + "name": "Nova | Sobek's Bite", + "description": "The Nova's rock-bottom price tag makes it a great ambush weapon for a cash-strapped team.", + "weapon": { + "id": "weapon_nova", + "name": "Nova" + }, + "category": { + "id": "csgo_inventory_weapon_category_heavy", + "name": "Heavy" + }, + "pattern": { + "id": "gs_nova_sobek", + "name": "Sobek's Bite" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1247", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_nova_gs_nova_sobek_light.png" + }, + { + "id": "skin-2359356", + "name": "P250 | Gunsmoke", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_gelpen", + "name": "Gunsmoke" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "15", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno", + "name": "The Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno.png" + } + ], + "crates": [ + { + "id": "crate-4023", + "name": "ESL One Cologne 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_inferno.625d3ec90aeead39c10cba620cd40e971beb84b1.png" + }, + { + "id": "crate-4032", + "name": "DreamHack 2014 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_inferno.0c362d928c221f4f464238720874a6b1dfcb2616.png" + }, + { + "id": "crate-4080", + "name": "ESL One Katowice 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno.20668cdf600cf5679345ee1bca188258312678af.png" + }, + { + "id": "crate-4133", + "name": "ESL One Cologne 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_inferno.a0929e27c262e59b5b1198743bc2194d92aa2ff6.png" + }, + { + "id": "crate-4178", + "name": "DreamHack Cluj-Napoca 2015 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_inferno.3ad3cf91ea2960546126bd11421e064a5716e93d.png" + }, + { + "id": "crate-4227", + "name": "MLG Columbus 2016 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_inferno.bc1ef2fd8a91d14c6c2e7e2a444e2c05feb4956e.png" + }, + { + "id": "crate-4396", + "name": "Krakow 2017 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_inferno.740191615458fa81ee37a4f374220e5dd3ad91ea.png" + }, + { + "id": "crate-4463", + "name": "Boston 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_inferno.ebe33e799b076d3842b02bdddc98b783ea0f5ce4.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_gelpen_light.png" + }, + { + "id": "skin-2359404", + "name": "P250 | Bone Mask", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_tape", + "name": "Bone Mask" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "27", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_tape_light.png" + }, + { + "id": "skin-2359432", + "name": "P250 | Metallic DDPAT", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_urban", + "name": "Metallic DDPAT" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "34", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_urban_light.png" + }, + { + "id": "skin-2359604", + "name": "P250 | Boreal Forest", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_forest_boreal_light.png" + }, + { + "id": "skin-2359608", + "name": "P250 | Forest Night", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_forest_night", + "name": "Forest Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "78", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_forest_night_light.png" + }, + { + "id": "skin-2359692", + "name": "P250 | Sand Dune", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_sand", + "name": "Sand Dune" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "99", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_so_sand_light.png" + }, + { + "id": "skin-2359704", + "name": "P250 | Whiteout", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_whiteout", + "name": "Whiteout" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "102", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_so_whiteout_light.png" + }, + { + "id": "skin-2359796", + "name": "P250 | X-Ray", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_xray_p250", + "name": "X-Ray" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "125", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-xraymachine", + "name": "The X-Ray Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_xraymachine.png" + } + ], + "crates": [ + { + "id": "crate-4668", + "name": "The X-Ray Collection", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_xray_p250.a25f07aef78944efdd2ad4bca2a009749b3346e8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_xray_p250_light.png" + }, + { + "id": "skin-2359944", + "name": "P250 | Splash", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_splash_p250", + "name": "Splash" + }, + "min_float": 0.06, + "max_float": 0.18, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "162", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports", + "name": "The eSports 2013 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports.png" + } + ], + "crates": [ + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_splash_p250_light.png" + }, + { + "id": "skin-2359952", + "name": "P250 | Modern Hunter", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_hunter_modern", + "name": "Modern Hunter" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "164", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_hunter_modern_light.png" + }, + { + "id": "skin-2359968", + "name": "P250 | Nuclear Threat", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_nukestripe_green", + "name": "Nuclear Threat" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "168", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke", + "name": "The Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke.png" + } + ], + "crates": [ + { + "id": "crate-4025", + "name": "ESL One Cologne 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_nuke.0f12d84b7859a10f2d54353bb93bad94a17a97ce.png" + }, + { + "id": "crate-4034", + "name": "DreamHack 2014 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_nuke.5385c040bab29517b9cbaefb0f63af525f2fb04e.png" + }, + { + "id": "crate-4082", + "name": "ESL One Katowice 2015 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke.7c963862e4c4a2b783ac45893601dbf4520b0cab.png" + }, + { + "id": "crate-4232", + "name": "MLG Columbus 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_nuke.7a231ae8e8be1de61cc92ee5d6ce6d7cd9e3e9c6.png" + }, + { + "id": "crate-4280", + "name": "Cologne 2016 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_nuke.7f36906aa5ad77f39c0a17a9bcc0988b95d76157.png" + }, + { + "id": "crate-4350", + "name": "Atlanta 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_nuke.f9c3a5c9125a951181c52d43b6b123e21d867440.png" + }, + { + "id": "crate-4402", + "name": "Krakow 2017 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_nuke.e65a7276a2c7120a936a28fd620c8ad293b8d715.png" + }, + { + "id": "crate-4469", + "name": "Boston 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_nuke.9d83d9e841a7a06e01c0c7ce41b6af70026e6342.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_nukestripe_green_light.png" + }, + { + "id": "skin-2360124", + "name": "P250 | Facets", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_crumple_dark_bravo", + "name": "Facets" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "207", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_crumple_dark_bravo_light.png" + }, + { + "id": "skin-2360172", + "name": "P250 | Hive", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_redhex", + "name": "Hive" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "219", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_redhex_light.png" + }, + { + "id": "skin-2360216", + "name": "P250 | Steel Disruption", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ddpatdense_silver", + "name": "Steel Disruption" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "230", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-ii", + "name": "The eSports 2013 Winter Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_ii.png" + } + ], + "crates": [ + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_ddpatdense_silver_light.png" + }, + { + "id": "skin-2360328", + "name": "P250 | Mehndi", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_refined", + "name": "Mehndi" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "258", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_refined_light.png" + }, + { + "id": "skin-2360380", + "name": "P250 | Undertow", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_p250_beaded_paint", + "name": "Undertow" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "271", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_p250_beaded_paint_light.png" + }, + { + "id": "skin-2360476", + "name": "P250 | Franklin", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_money", + "name": "Franklin" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "295", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_money_light.png" + }, + { + "id": "skin-2360728", + "name": "P250 | Supernova", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_bittersweet", + "name": "Supernova" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "358", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_bittersweet_light.png" + }, + { + "id": "skin-2360788", + "name": "P250 | Contamination", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_nuclear_skulls4_p250", + "name": "Contamination" + }, + "min_float": 0, + "max_float": 0.83, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "373", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_nuclear_skulls4_p250_light.png" + }, + { + "id": "skin-2360848", + "name": "P250 | Cartel", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_p250_cartel", + "name": "Cartel" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "388", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aq_p250_cartel_light.png" + }, + { + "id": "skin-2360912", + "name": "P250 | Muertos", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_mandala", + "name": "Muertos" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "404", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_mandala_light.png" + }, + { + "id": "skin-2361000", + "name": "P250 | Valence", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_p250_contour", + "name": "Valence" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "426", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aq_p250_contour_light.png" + }, + { + "id": "skin-2361160", + "name": "P250 | Crimson Kimono", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_kimono_diamonds_red", + "name": "Crimson Kimono" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "466", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_kimono_diamonds_red_light.png" + }, + { + "id": "skin-2361164", + "name": "P250 | Mint Kimono", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_kimono_diamonds", + "name": "Mint Kimono" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "467", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-kimono", + "name": "The Rising Sun Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_kimono.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_kimono_diamonds_light.png" + }, + { + "id": "skin-2361300", + "name": "P250 | Wingshot", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_p250_crackshot", + "name": "Wingshot" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "501", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_p250_crackshot_light.png" + }, + { + "id": "skin-2361500", + "name": "P250 | Asiimov", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_asiimov", + "name": "Asiimov" + }, + "min_float": 0.1, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "551", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_asiimov_light.png" + }, + { + "id": "skin-2361664", + "name": "P250 | Iron Clad", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p250_metal_panels", + "name": "Iron Clad" + }, + "min_float": 0.05, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "592", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_metal_panels_light.png" + }, + { + "id": "skin-2361896", + "name": "P250 | Ripple", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_p250_sputnik", + "name": "Ripple" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "650", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_p250_sputnik_light.png" + }, + { + "id": "skin-2361968", + "name": "P250 | Red Rock", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_axiom", + "name": "Red Rock" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "668", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_axiom_light.png" + }, + { + "id": "skin-2362008", + "name": "P250 | See Ya Later", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_cybercroc", + "name": "See Ya Later" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "678", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_cybercroc_light.png" + }, + { + "id": "skin-2362260", + "name": "P250 | Dark Filigree", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ren_dark", + "name": "Dark Filigree" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "741", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_am_ren_dark_light.png" + }, + { + "id": "skin-2362292", + "name": "P250 | Vino Primo", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p250_checker", + "name": "Vino Primo" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "749", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_checker_light.png" + }, + { + "id": "skin-2362404", + "name": "P250 | Facility Draft", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_blueprint_red", + "name": "Facility Draft" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "777", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_blueprint_red_light.png" + }, + { + "id": "skin-2362440", + "name": "P250 | Exchanger", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_ducts_blue", + "name": "Exchanger" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "786", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_ducts_blue_light.png" + }, + { + "id": "skin-2362548", + "name": "P250 | Nevermore", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_p250_gravediggers", + "name": "Nevermore" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "813", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aa_p250_gravediggers_light.png" + }, + { + "id": "skin-2362596", + "name": "P250 | Drought", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_desert_skulls_dawn", + "name": "Drought" + }, + "min_float": 0, + "max_float": 0.44, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "825", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_sp_desert_skulls_dawn_light.png" + }, + { + "id": "skin-2362688", + "name": "P250 | Verdigris", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_p250_verdigris", + "name": "Verdigris" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "848", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aq_p250_verdigris_light.png" + }, + { + "id": "skin-2362924", + "name": "P250 | Inferno", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p250_inferno", + "name": "Inferno" + }, + "min_float": 0, + "max_float": 0.68, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "907", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_inferno_light.png" + }, + { + "id": "skin-2363008", + "name": "P250 | Black & Tan", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_desert_multicam", + "name": "Black & Tan" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "928", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_desert_multicam_light.png" + }, + { + "id": "skin-2363168", + "name": "P250 | Cassette", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_cassette", + "name": "Cassette" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "968", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_cassette_light.png" + }, + { + "id": "skin-2363224", + "name": "P250 | Contaminant", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_infect", + "name": "Contaminant" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "982", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_infect_light.png" + }, + { + "id": "skin-2363416", + "name": "P250 | Bengal Tiger", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_p250_tiger", + "name": "Bengal Tiger" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1030", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_hy_p250_tiger_light.png" + }, + { + "id": "skin-2363472", + "name": "P250 | Cyber Shell", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p250_cybershell", + "name": "Cyber Shell" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1044", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_cybershell_light.png" + }, + { + "id": "skin-2363620", + "name": "P250 | Digital Architect", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_vertigogeo_neon", + "name": "Digital Architect" + }, + "min_float": 0, + "max_float": 0.49, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1081", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_aa_vertigogeo_neon_light.png" + }, + { + "id": "skin-2363908", + "name": "P250 | Visions", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p250_visions", + "name": "Visions" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1153", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_visions_light.png" + }, + { + "id": "skin-2364216", + "name": "P250 | Re.built", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_p250_rebuilt", + "name": "Re.built" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1230", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_cu_p250_rebuilt_light.png" + }, + { + "id": "skin-2364288", + "name": "P250 | Apep's Curse", + "description": "A low-recoil firearm with a high rate of fire, the P250 is a relatively inexpensive choice against armored opponents.", + "weapon": { + "id": "weapon_p250", + "name": "P250" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_p250_apep", + "name": "Apep's Curse" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1248", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_p250_gs_p250_apep_light.png" + }, + { + "id": "skin-2490552", + "name": "SCAR-20 | Contractor", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_pmc", + "name": "Contractor" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "46", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_so_pmc_light.png" + }, + { + "id": "skin-2490648", + "name": "SCAR-20 | Carbon Fiber", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_carbon_fiber", + "name": "Carbon Fiber" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "70", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-train", + "name": "The Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4137", + "name": "ESL One Cologne 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_train.a7f35dc2af6523bae268f2d289f8e2401cc93418.png" + }, + { + "id": "crate-4182", + "name": "DreamHack Cluj-Napoca 2015 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_train.0d90a1abb8c5a7a925c964993fbe5fc491dbef7f.png" + }, + { + "id": "crate-4231", + "name": "MLG Columbus 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_train.8e6d7a5c7031a0f374d5671ef2c3430521443813.png" + }, + { + "id": "crate-4279", + "name": "Cologne 2016 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_train.9d07311ba0f80e6f9765fc0ce4e2198ed46d3c62.png" + }, + { + "id": "crate-4349", + "name": "Atlanta 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_train.094d87e1e59c1186ce31cc361215e93dbac5d68d.png" + }, + { + "id": "crate-4401", + "name": "Krakow 2017 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_train.218a403b03c551d7b4b33e9a921f705710959c4d.png" + }, + { + "id": "crate-4468", + "name": "Boston 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_train.43b502d91d47c530d5f2dc028c31ba42ec509b6f.png" + }, + { + "id": "crate-4545", + "name": "London 2018 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_train.b4d9de3fe319af138e2406a878ac4618dabee907.png" + }, + { + "id": "crate-4595", + "name": "Katowice 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_train.7cea24a20f8bd7e630a8c13bd7f932ec3f2cbb01.png" + }, + { + "id": "crate-4664", + "name": "Berlin 2019 Train Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_train.ad635359a453056a3e8da96bbc1cf4dac74d3387.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_am_carbon_fiber_light.png" + }, + { + "id": "skin-2490768", + "name": "SCAR-20 | Storm", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_stormfront", + "name": "Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "100", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_so_stormfront_light.png" + }, + { + "id": "skin-2490832", + "name": "SCAR-20 | Sand Mesh", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_sand", + "name": "Sand Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "116", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_mesh_sand_light.png" + }, + { + "id": "skin-2490996", + "name": "SCAR-20 | Palm", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_palm", + "name": "Palm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "157", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust", + "name": "The Dust Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_palm_light.png" + }, + { + "id": "skin-2491004", + "name": "SCAR-20 | Brass", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_brass", + "name": "Brass" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "159", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_aq_brass_light.png" + }, + { + "id": "skin-2491028", + "name": "SCAR-20 | Splash Jam", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_hunter_blaze_pink", + "name": "Splash Jam" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "165", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-militia", + "name": "The Militia Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_militia.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_hunter_blaze_pink_light.png" + }, + { + "id": "skin-2491152", + "name": "SCAR-20 | Emerald", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "an_emerald_bravo", + "name": "Emerald" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "196", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_an_emerald_bravo_light.png" + }, + { + "id": "skin-2491296", + "name": "SCAR-20 | Crimson Web", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_webs_darker", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "232", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_webs_darker_light.png" + }, + { + "id": "skin-2491560", + "name": "SCAR-20 | Army Sheen", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_army_shine", + "name": "Army Sheen" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "298", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_am_army_shine_light.png" + }, + { + "id": "skin-2491616", + "name": "SCAR-20 | Cyrex", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_scar_cyrex", + "name": "Cyrex" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "312", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_scar_cyrex_light.png" + }, + { + "id": "skin-2491932", + "name": "SCAR-20 | Cardiac", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_scar20_intervention", + "name": "Cardiac" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "391", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_scar20_intervention_light.png" + }, + { + "id": "skin-2491992", + "name": "SCAR-20 | Grotto", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_scar20_leak", + "name": "Grotto" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "406", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-6", + "name": "The Chroma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_6.png" + } + ], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_aq_scar20_leak_light.png" + }, + { + "id": "skin-2492376", + "name": "SCAR-20 | Green Marine", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_scar20_peacemaker03", + "name": "Green Marine" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "502", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_peacemaker03_light.png" + }, + { + "id": "skin-2492440", + "name": "SCAR-20 | Outbreak", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_scar20_jungler", + "name": "Outbreak" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "518", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_scar20_jungler_light.png" + }, + { + "id": "skin-2492756", + "name": "SCAR-20 | Bloodsport", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_scar20_bloodsport", + "name": "Bloodsport" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "597", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_bloodsport_light.png" + }, + { + "id": "skin-2492816", + "name": "SCAR-20 | Powercore", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_scar20_powercore", + "name": "Powercore" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "612", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_powercore_light.png" + }, + { + "id": "skin-2492936", + "name": "SCAR-20 | Blueprint", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_blueprint_scar", + "name": "Blueprint" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "642", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_blueprint_scar_light.png" + }, + { + "id": "skin-2493108", + "name": "SCAR-20 | Jungle Slipstream", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_scar20_jungle_slipstream", + "name": "Jungle Slipstream" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "685", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_scar20_jungle_slipstream_light.png" + }, + { + "id": "skin-2493828", + "name": "SCAR-20 | Stone Mosaico", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_canals_tile", + "name": "Stone Mosaico" + }, + "min_float": 0.06, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "865", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_canals_tile_light.png" + }, + { + "id": "skin-2493952", + "name": "SCAR-20 | Torn", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_scar20_striker_dust", + "name": "Torn" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "896", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_scar20_striker_dust_light.png" + }, + { + "id": "skin-2494024", + "name": "SCAR-20 | Assault", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_scar_assault", + "name": "Assault" + }, + "min_float": 0, + "max_float": 0.62, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "914", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-24", + "name": "The CS20 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_24.png" + } + ], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_cu_scar_assault_light.png" + }, + { + "id": "skin-2494184", + "name": "SCAR-20 | Enforcer", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_scar20_enforcer", + "name": "Enforcer" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "954", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar20_enforcer_light.png" + }, + { + "id": "skin-2494480", + "name": "SCAR-20 | Magna Carta", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_authority_purple", + "name": "Magna Carta" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1028", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_hy_authority_purple_light.png" + }, + { + "id": "skin-2494924", + "name": "SCAR-20 | Poultrygeist", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_scar_chickenfight", + "name": "Poultrygeist" + }, + "min_float": 0, + "max_float": 0.57, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1139", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_sp_scar_chickenfight_light.png" + }, + { + "id": "skin-2495272", + "name": "SCAR-20 | Fragments", + "description": "The SCAR-20 is a semi-automatic sniper rifle that trades a high rate of fire and powerful long-distance damage for sluggish movement speed and big price tag.", + "weapon": { + "id": "weapon_scar20", + "name": "SCAR-20" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_scar_fragments_black", + "name": "Fragments" + }, + "min_float": 0, + "max_float": 0.78, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1226", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_scar20_gs_scar_fragments_black_light.png" + }, + { + "id": "skin-2556016", + "name": "SG 553 | Anodized Navy", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "an_navy", + "name": "Anodized Navy" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "28", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_an_navy_light.png" + }, + { + "id": "skin-2556060", + "name": "SG 553 | Bulldozer", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_yellow", + "name": "Bulldozer" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "39", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_yellow_light.png" + }, + { + "id": "skin-2556148", + "name": "SG 553 | Hypnotic", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_vertigo", + "name": "Hypnotic" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "61", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aa_vertigo_light.png" + }, + { + "id": "skin-2556296", + "name": "SG 553 | Ultraviolet", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_purple_light.png" + }, + { + "id": "skin-2556308", + "name": "SG 553 | Tornado", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_tornado", + "name": "Tornado" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "101", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-assault", + "name": "The Assault Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_assault.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_tornado_light.png" + }, + { + "id": "skin-2556448", + "name": "SG 553 | Waves Perforated", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_tape_dots_waves", + "name": "Waves Perforated" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "136", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_tape_dots_waves_light.png" + }, + { + "id": "skin-2556648", + "name": "SG 553 | Wave Spray", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_spray_waves_bravo", + "name": "Wave Spray" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "186", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_spray_waves_bravo_light.png" + }, + { + "id": "skin-2556876", + "name": "SG 553 | Gator Mesh", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_mesh_python", + "name": "Gator Mesh" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "243", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_mesh_python_light.png" + }, + { + "id": "skin-2556892", + "name": "SG 553 | Damascus Steel", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_damascus_sg553", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "247", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aq_damascus_sg553_light.png" + }, + { + "id": "skin-2557052", + "name": "SG 553 | Pulse", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_pulse", + "name": "Pulse" + }, + "min_float": 0.1, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "287", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_pulse_light.png" + }, + { + "id": "skin-2557096", + "name": "SG 553 | Army Sheen", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_army_shine", + "name": "Army Sheen" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "298", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_am_army_shine_light.png" + }, + { + "id": "skin-2557356", + "name": "SG 553 | Traveler", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_luggage_sg553", + "name": "Traveler" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "363", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_luggage_sg553_light.png" + }, + { + "id": "skin-2557416", + "name": "SG 553 | Fallout Warning", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_nukestripe_maroon_sg553", + "name": "Fallout Warning" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "378", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cache", + "name": "The Cache Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cache.png" + } + ], + "crates": [ + { + "id": "crate-4026", + "name": "ESL One Cologne 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cache.374ca6f8841a65c1890fc6f24f2a084c523ea9f8.png" + }, + { + "id": "crate-4035", + "name": "DreamHack 2014 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cache.191893690c5fd8c410daf933071e9ffe22b655e4.png" + }, + { + "id": "crate-4083", + "name": "ESL One Katowice 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cache.e3d4caa342c69142c0fb59c11b1bea091f5bc441.png" + }, + { + "id": "crate-4136", + "name": "ESL One Cologne 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cache.c9cea9d03c09a923524379c6706f3851ccc750df.png" + }, + { + "id": "crate-4181", + "name": "DreamHack Cluj-Napoca 2015 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cache.3bf78784a8d6b49ba2d1d95917b2edd167ef577a.png" + }, + { + "id": "crate-4230", + "name": "MLG Columbus 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cache.f0f2c5b00fca82486aa0dccf8b3c2200db618289.png" + }, + { + "id": "crate-4278", + "name": "Cologne 2016 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cache.6233f9fc52acf0956b23dc4b168f8d611d9ac8c7.png" + }, + { + "id": "crate-4348", + "name": "Atlanta 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cache.6ec62b0923e3347faef891d0acff28ae37b1c1ae.png" + }, + { + "id": "crate-4400", + "name": "Krakow 2017 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cache.d2e97ade896a42adbb7f16920cdeb9ce71281022.png" + }, + { + "id": "crate-4467", + "name": "Boston 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cache.5b3feaa264381bb5eed8f06bf8a8df5ef6d59313.png" + }, + { + "id": "crate-4544", + "name": "London 2018 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_cache.ecbdd69c85012fe6f09b83484572fcd430990571.png" + }, + { + "id": "crate-4594", + "name": "Katowice 2019 Cache Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_cache.f450df7d0dd77551d2e8a4758737603919dc8582.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_nukestripe_maroon_sg553_light.png" + }, + { + "id": "skin-2557852", + "name": "SG 553 | Cyrex", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_cyrex", + "name": "Cyrex" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "487", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_cyrex_light.png" + }, + { + "id": "skin-2557980", + "name": "SG 553 | Tiger Moth", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_sg553_tiger_moth", + "name": "Tiger Moth" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "519", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_tiger_moth_light.png" + }, + { + "id": "skin-2558116", + "name": "SG 553 | Atlas", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_atlas", + "name": "Atlas" + }, + "min_float": 0, + "max_float": 0.81, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "553", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_atlas_light.png" + }, + { + "id": "skin-2558296", + "name": "SG 553 | Aerial", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_aerial", + "name": "Aerial" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "598", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_aerial_light.png" + }, + { + "id": "skin-2558356", + "name": "SG 553 | Triarch", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg556_triarch", + "name": "Triarch" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "613", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg556_triarch_light.png" + }, + { + "id": "skin-2558648", + "name": "SG 553 | Phantom", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_sg553_phantom", + "name": "Phantom" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "686", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_phantom_light.png" + }, + { + "id": "skin-2558712", + "name": "SG 553 | Aloha", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_sg533_aloha", + "name": "Aloha" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "702", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_sg533_aloha_light.png" + }, + { + "id": "skin-2558904", + "name": "SG 553 | Integrale", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_rally", + "name": "Integrale" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "750", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_rally_light.png" + }, + { + "id": "skin-2558964", + "name": "SG 553 | Desert Blossom", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_desert_bloom_bright", + "name": "Desert Blossom" + }, + "min_float": 0, + "max_float": 0.49, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "765", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aa_desert_bloom_bright_light.png" + }, + { + "id": "skin-2559164", + "name": "SG 553 | Danger Close", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_sg553_over_heated", + "name": "Danger Close" + }, + "min_float": 0.02, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "815", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_over_heated_light.png" + }, + { + "id": "skin-2559348", + "name": "SG 553 | Barricade", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_asgard_wall", + "name": "Barricade" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "861", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_asgard_wall_light.png" + }, + { + "id": "skin-2559360", + "name": "SG 553 | Candy Apple", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_red_sg553", + "name": "Candy Apple" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "864", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_so_red_sg553_light.png" + }, + { + "id": "skin-2559492", + "name": "SG 553 | Colony IV", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_reactor", + "name": "Colony IV" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "897", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_reactor_light.png" + }, + { + "id": "skin-2559640", + "name": "SG 553 | Bleached", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_desert_skulls", + "name": "Bleached" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "934", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_sp_desert_skulls_light.png" + }, + { + "id": "skin-2559724", + "name": "SG 553 | Darkwing", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_darkwing", + "name": "Darkwing" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "955", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_darkwing_light.png" + }, + { + "id": "skin-2559768", + "name": "SG 553 | Ol' Rusty", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_sg553_rusty", + "name": "Ol' Rusty" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "966", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_rusty_light.png" + }, + { + "id": "skin-2559992", + "name": "SG 553 | Lush Ruins", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_ruins_green", + "name": "Lush Ruins" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1022", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_aa_ruins_green_light.png" + }, + { + "id": "skin-2560096", + "name": "SG 553 | Heavy Metal", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_sg553_deathmetal", + "name": "Heavy Metal" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1048", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_gs_sg553_deathmetal_light.png" + }, + { + "id": "skin-2560240", + "name": "SG 553 | Hazard Pay", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_caution", + "name": "Hazard Pay" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1084", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_caution_light.png" + }, + { + "id": "skin-2560508", + "name": "SG 553 | Dragon Tech", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_cyber_dragon", + "name": "Dragon Tech" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1151", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_cyber_dragon_light.png" + }, + { + "id": "skin-2560840", + "name": "SG 553 | Cyberforce", + "description": "The terrorist-exclusive SG553 is a premium scoped alternative to the AK47 for effective long-range engagement.", + "weapon": { + "id": "weapon_sg556", + "name": "SG 553" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_sg553_cyberforce", + "name": "Cyberforce" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1234", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_sg556_cu_sg553_cyberforce_light.png" + }, + { + "id": "skin-2621544", + "name": "SSG 08 | Lichen Dashed", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_short_tape", + "name": "Lichen Dashed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "26", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-aztec", + "name": "The Aztec Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_aztec.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_short_tape_light.png" + }, + { + "id": "skin-2621680", + "name": "SSG 08 | Dark Water", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_zebra_dark", + "name": "Dark Water" + }, + "min_float": 0.1, + "max_float": 0.26, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "60", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_am_zebra_dark_light.png" + }, + { + "id": "skin-2621720", + "name": "SSG 08 | Carbon Fiber", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_carbon_fiber", + "name": "Carbon Fiber" + }, + "min_float": 0, + "max_float": 0.12, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "70", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_am_carbon_fiber_light.png" + }, + { + "id": "skin-2621824", + "name": "SSG 08 | Blue Spruce", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_moss", + "name": "Blue Spruce" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "96", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_so_moss_light.png" + }, + { + "id": "skin-2621836", + "name": "SSG 08 | Sand Dune", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_sand", + "name": "Sand Dune" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "99", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_so_sand_light.png" + }, + { + "id": "skin-2622028", + "name": "SSG 08 | Jungle Dashed", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_tape_short_jungle", + "name": "Jungle Dashed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "147", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_tape_short_jungle_light.png" + }, + { + "id": "skin-2622240", + "name": "SSG 08 | Mayan Dreams", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_mayan_dreams_bravo", + "name": "Mayan Dreams" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "200", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-ii", + "name": "The Alpha Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_ii.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_mayan_dreams_bravo_light.png" + }, + { + "id": "skin-2622328", + "name": "SSG 08 | Blood in the Water", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_shark", + "name": "Blood in the Water" + }, + "min_float": 0.06, + "max_float": 0.2, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "222", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_shark_light.png" + }, + { + "id": "skin-2622372", + "name": "SSG 08 | Tropical Storm", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_palm_shadow", + "name": "Tropical Storm" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "233", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage", + "name": "The Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4024", + "name": "ESL One Cologne 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_mirage.9b14fdeb121fc012013496c6e78ff1f7212135bb.png" + }, + { + "id": "crate-4033", + "name": "DreamHack 2014 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_mirage.f7fd41fa75f398759589c4a42981c67693738f30.png" + }, + { + "id": "crate-4081", + "name": "ESL One Katowice 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage.3c168637f2a150e95b0bc786dc364128a627d5d1.png" + }, + { + "id": "crate-4132", + "name": "ESL One Cologne 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_mirage.cd633c421896f165a2575204d9d5f908499a918a.png" + }, + { + "id": "crate-4177", + "name": "DreamHack Cluj-Napoca 2015 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_mirage.4bd48ff1973049af65f5439ca4d08cd91fb2b0c9.png" + }, + { + "id": "crate-4226", + "name": "MLG Columbus 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_mirage.bbb2b84e6d14d9d7634475dad482ada35977eaa3.png" + }, + { + "id": "crate-4275", + "name": "Cologne 2016 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_mirage.22a4700e330b3fbc7161c1b98c13aee8edeb2ba3.png" + }, + { + "id": "crate-4345", + "name": "Atlanta 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_mirage.e4743d9aff1ac76c8bd57c24706eb9bb7684e5ec.png" + }, + { + "id": "crate-4397", + "name": "Krakow 2017 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_mirage.ce90364134b366b08ec65f0048ba32f354a89f07.png" + }, + { + "id": "crate-4464", + "name": "Boston 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_mirage.35c3e485b0f955511dac55d6f4a817a57ea3dbe5.png" + }, + { + "id": "crate-4541", + "name": "London 2018 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_mirage.009d901f9a204073dddea7113a5577ef5a360fc7.png" + }, + { + "id": "crate-4591", + "name": "Katowice 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_mirage.a8b296d35c5d363b65c6ee39fe9bb3f8febea2d3.png" + }, + { + "id": "crate-4661", + "name": "Berlin 2019 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_mirage.10c013a74e2c34c2c51cd7183897b1f3f9075b21.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_palm_shadow_light.png" + }, + { + "id": "skin-2622452", + "name": "SSG 08 | Acid Fade", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aa_fade_grassland", + "name": "Acid Fade" + }, + "min_float": 0, + "max_float": 0.03, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "253", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_aa_fade_grassland_light.png" + }, + { + "id": "skin-2622656", + "name": "SSG 08 | Slashed", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_immortal", + "name": "Slashed" + }, + "min_float": 0.15, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "304", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_immortal_light.png" + }, + { + "id": "skin-2622716", + "name": "SSG 08 | Detour", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ssg08_marker", + "name": "Detour" + }, + "min_float": 0, + "max_float": 0.43, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "319", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_ssg08_marker_light.png" + }, + { + "id": "skin-2622884", + "name": "SSG 08 | Abyss", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_leviathan", + "name": "Abyss" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "361", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_aq_leviathan_light.png" + }, + { + "id": "skin-2623452", + "name": "SSG 08 | Big Iron", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_technicality", + "name": "Big Iron" + }, + "min_float": 0, + "max_float": 0.64, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "503", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_technicality_light.png" + }, + { + "id": "skin-2623592", + "name": "SSG 08 | Necropos", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_necropos", + "name": "Necropos" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "538", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_necropos_light.png" + }, + { + "id": "skin-2623656", + "name": "SSG 08 | Ghost Crusader", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ssg08_armacore", + "name": "Ghost Crusader" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "554", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_gs_ssg08_armacore_light.png" + }, + { + "id": "skin-2623936", + "name": "SSG 08 | Dragonfire", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_dragonfire_scope", + "name": "Dragonfire" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "624", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_dragonfire_scope_light.png" + }, + { + "id": "skin-2624120", + "name": "SSG 08 | Death's Head", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_deathshead", + "name": "Death's Head" + }, + "min_float": 0, + "max_float": 0.51, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "670", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_deathshead_light.png" + }, + { + "id": "skin-2624412", + "name": "SSG 08 | Orange Filigree", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ren_orange", + "name": "Orange Filigree" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "743", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_ren_orange_light.png" + }, + { + "id": "skin-2624444", + "name": "SSG 08 | Hand Brake", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ssg08_checker", + "name": "Hand Brake" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "751", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_gs_ssg08_checker_light.png" + }, + { + "id": "skin-2624488", + "name": "SSG 08 | Red Stone", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_rune_stone", + "name": "Red Stone" + }, + "min_float": 0.06, + "max_float": 0.5, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "762", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_so_rune_stone_light.png" + }, + { + "id": "skin-2624912", + "name": "SSG 08 | Sea Calico", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_flowers_stmarc", + "name": "Sea Calico" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "868", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-stmarc", + "name": "The St. Marc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_stmarc.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_flowers_stmarc_light.png" + }, + { + "id": "skin-2625036", + "name": "SSG 08 | Bloodshot", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_tickler", + "name": "Bloodshot" + }, + "min_float": 0.14, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "899", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_tickler_light.png" + }, + { + "id": "skin-2625180", + "name": "SSG 08 | Prey", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_zebracam_red", + "name": "Prey" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "935", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_sp_zebracam_red_light.png" + }, + { + "id": "skin-2625264", + "name": "SSG 08 | Fever Dream", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_fever_dream", + "name": "Fever Dream" + }, + "min_float": 0, + "max_float": 0.72, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "956", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_fever_dream_light.png" + }, + { + "id": "skin-2625308", + "name": "SSG 08 | Mainframe 001", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_mainframe", + "name": "Mainframe 001" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "967", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-26", + "name": "The Fracture Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_26.png" + } + ], + "crates": [ + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_mainframe_light.png" + }, + { + "id": "skin-2625396", + "name": "SSG 08 | Parallax", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_chromatic", + "name": "Parallax" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "989", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_chromatic_light.png" + }, + { + "id": "skin-2625424", + "name": "SSG 08 | Threat Detected", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_intelligence_orange", + "name": "Threat Detected" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "996", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_am_intelligence_orange_light.png" + }, + { + "id": "skin-2625648", + "name": "SSG 08 | Death Strike", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg08_scorpion", + "name": "Death Strike" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1052", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg08_scorpion_light.png" + }, + { + "id": "skin-2625680", + "name": "SSG 08 | Spring Twilly", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_trainarchitect_green", + "name": "Spring Twilly" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1060", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_hy_trainarchitect_green_light.png" + }, + { + "id": "skin-2625844", + "name": "SSG 08 | Turbo Peek", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_ssg_overtake", + "name": "Turbo Peek" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1101", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_cu_ssg_overtake_light.png" + }, + { + "id": "skin-2626444", + "name": "SSG 08 | Azure Glyph", + "description": "The SSG08 bolt-action is a low-damage but very cost-effective sniper rifle, making it a smart choice for early-round long-range marksmanship.", + "weapon": { + "id": "weapon_ssg08", + "name": "SSG 08" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_ssg08_anubis", + "name": "Azure Glyph" + }, + "min_float": 0.01, + "max_float": 0.99, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1251", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_ssg08_gs_ssg08_anubis_light.png" + }, + { + "id": "skin-3932400", + "name": "M4A1-S | Dark Water", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_zebra_dark", + "name": "Dark Water" + }, + "min_float": 0.1, + "max_float": 0.26, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "60", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_light.png" + }, + { + "id": "skin-3932468", + "name": "M4A1-S | Boreal Forest", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-italy", + "name": "The Italy Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_italy.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_light.png" + }, + { + "id": "skin-3932916", + "name": "M4A1-S | Bright Water", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_ocean_bravo", + "name": "Bright Water" + }, + "min_float": 0.1, + "max_float": 0.22, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "189", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_light.png" + }, + { + "id": "skin-3933028", + "name": "M4A1-S | Blood Tiger", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_redtiger", + "name": "Blood Tiger" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "217", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_redtiger_light.png" + }, + { + "id": "skin-3933100", + "name": "M4A1-S | VariCamo", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_varicamo", + "name": "VariCamo" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "235", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_varicamo_light.png" + }, + { + "id": "skin-3933176", + "name": "M4A1-S | Nitro", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "so_orange_accents", + "name": "Nitro" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "254", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_so_orange_accents_light.png" + }, + { + "id": "skin-3933188", + "name": "M4A1-S | Guardian", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1-s_elegant", + "name": "Guardian" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "257", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-1", + "name": "The Winter Offensive Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_1.png" + } + ], + "crates": [ + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_light.png" + }, + { + "id": "skin-3933364", + "name": "M4A1-S | Atomic Alloy", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_m4a1-s_alloy_orange", + "name": "Atomic Alloy" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "301", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_light.png" + }, + { + "id": "skin-3933444", + "name": "M4A1-S | Master Piece", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1-s_silence", + "name": "Master Piece" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "321", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_light.png" + }, + { + "id": "skin-3933464", + "name": "M4A1-S | Knight", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_metals", + "name": "Knight" + }, + "min_float": 0, + "max_float": 0.1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "326", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_metals_light.png" + }, + { + "id": "skin-3933600", + "name": "M4A1-S | Cyrex", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1s_cyrex", + "name": "Cyrex" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "360", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_light.png" + }, + { + "id": "skin-3933692", + "name": "M4A1-S | Basilisk", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "aq_m4a1s_basilisk", + "name": "Basilisk" + }, + "min_float": 0, + "max_float": 0.68, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "383", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-5", + "name": "The Vanguard Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_5.png" + } + ], + "crates": [ + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_light.png" + }, + { + "id": "skin-3933880", + "name": "M4A1-S | Hyper Beast", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1_hyper_beast", + "name": "Hyper Beast" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "430", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_light.png" + }, + { + "id": "skin-3933920", + "name": "M4A1-S | Icarus Fell", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "hy_icarus", + "name": "Icarus Fell" + }, + "min_float": 0, + "max_float": 0.1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "440", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-gods-and-monsters", + "name": "The Gods and Monsters Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gods_and_monsters.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_hy_icarus_light.png" + }, + { + "id": "skin-3933940", + "name": "M4A1-S | Hot Rod", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "an_red_m4a1s", + "name": "Hot Rod" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "445", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_light.png" + }, + { + "id": "skin-3934148", + "name": "M4A1-S | Golden Coil", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1s_snakebite_gold", + "name": "Golden Coil" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "497", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_light.png" + }, + { + "id": "skin-3934352", + "name": "M4A1-S | Chantico's Fire", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1s_soultaker", + "name": "Chantico's Fire" + }, + "min_float": 0, + "max_float": 0.99, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "548", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_soultaker_light.png" + }, + { + "id": "skin-3934508", + "name": "M4A1-S | Mecha Industries", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1_mecha_industries", + "name": "Mecha Industries" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "587", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_mecha_industries_light.png" + }, + { + "id": "skin-3934684", + "name": "M4A1-S | Flashback", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1_flashback", + "name": "Flashback" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "631", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1_flashback_light.png" + }, + { + "id": "skin-3934736", + "name": "M4A1-S | Decimator", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1_decimator", + "name": "Decimator" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "644", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_decimator_light.png" + }, + { + "id": "skin-3934812", + "name": "M4A1-S | Briefing", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1s_metritera", + "name": "Briefing" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "663", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_metritera_light.png" + }, + { + "id": "skin-3934884", + "name": "M4A1-S | Leaded Glass", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1_shatter", + "name": "Leaded Glass" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "681", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_shatter_light.png" + }, + { + "id": "skin-3935016", + "name": "M4A1-S | Nightmare", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1s_nightmare", + "name": "Nightmare" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "714", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_nightmare_light.png" + }, + { + "id": "skin-3935328", + "name": "M4A1-S | Control Panel", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1s_operator", + "name": "Control Panel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "792", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-nuke-2", + "name": "The 2018 Nuke Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_nuke_2.png" + } + ], + "crates": [ + { + "id": "crate-4546", + "name": "London 2018 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_nuke.c5a435706f7a023e26c27c4b44ecd5467a6a0751.png" + }, + { + "id": "crate-4596", + "name": "Katowice 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_nuke.11aecd5c30f7ff4a7e5633e11c1f92c7436f7238.png" + }, + { + "id": "crate-4665", + "name": "Berlin 2019 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_nuke.d5ccbe093d09b47d2007ec613d1043debece329b.png" + }, + { + "id": "crate-4814", + "name": "Stockholm 2021 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_nuke.1fe24dddabe5b67b42dc78fe9a4b05bbca5129ce.png" + }, + { + "id": "crate-4840", + "name": "Antwerp 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_nuke.4429df1cdac6206b27343c1b2187ddd17c1f735b.png" + }, + { + "id": "crate-4865", + "name": "Rio 2022 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_nuke.77e9c0952c566be48bfe22d15fe1f19f4c975a22.png" + }, + { + "id": "crate-4898", + "name": "Paris 2023 Nuke Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_nuke.a486bc5278ce6d21c7dd9a41740af49e74c15726.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_operator_light.png" + }, + { + "id": "skin-3935608", + "name": "M4A1-S | Moss Quartz", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_crystallized_dark_green", + "name": "Moss Quartz" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "862", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_crystallized_dark_green_light.png" + }, + { + "id": "skin-3935944", + "name": "M4A1-S | Player Two", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1s_csgo2048", + "name": "Player Two" + }, + "min_float": 0, + "max_float": 0.84, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "946", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_csgo2048_light.png" + }, + { + "id": "skin-3936096", + "name": "M4A1-S | Printstream", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1s_printstream", + "name": "Printstream" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "984", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_printstream_light.png" + }, + { + "id": "skin-3936164", + "name": "M4A1-S | Welcome to the Jungle", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1_snake", + "name": "Welcome to the Jungle" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1001", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1_snake_light.png" + }, + { + "id": "skin-3936228", + "name": "M4A1-S | Blue Phosphor", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "am_m4a1s_bluesmoke", + "name": "Blue Phosphor" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1017", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_am_m4a1s_bluesmoke_light.png" + }, + { + "id": "skin-3936396", + "name": "M4A1-S | Fizzy POP", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "sp_technowar_red", + "name": "Fizzy POP" + }, + "min_float": 0, + "max_float": 0.57, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1059", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_sp_technowar_red_light.png" + }, + { + "id": "skin-3936452", + "name": "M4A1-S | Imminent Danger", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1_vertigo", + "name": "Imminent Danger" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1073", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1_vertigo_light.png" + }, + { + "id": "skin-3936680", + "name": "M4A1-S | Night Terror", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1s_insomnia", + "name": "Night Terror" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1130", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_insomnia_light.png" + }, + { + "id": "skin-3937052", + "name": "M4A1-S | Emphorosaur-S", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "cu_m4a1s_feeding_frenzy", + "name": "Emphorosaur-S" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1223", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_feeding_frenzy_light.png" + }, + { + "id": "skin-3937132", + "name": "M4A1-S | Mud-Spec", + "description": "With a smaller magazine than its unmuffled counterpart, the silenced M4A1 provides quieter shots with less recoil and better accuracy.", + "weapon": { + "id": "weapon_m4a1_silencer", + "name": "M4A1-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_rifles", + "name": "Rifles" + }, + "pattern": { + "id": "gs_m4a1s_milspec", + "name": "Mud-Spec" + }, + "min_float": 0, + "max_float": 0.73, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1243", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_milspec_light.png" + }, + { + "id": "skin-3997796", + "name": "USP-S | Forest Leaves", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_leaves", + "name": "Forest Leaves" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "25", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-safehouse", + "name": "The Safehouse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_safehouse.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_leaves_light.png" + }, + { + "id": "skin-3997936", + "name": "USP-S | Dark Water", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_zebra_dark", + "name": "Dark Water" + }, + "min_float": 0.1, + "max_float": 0.26, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "60", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-i", + "name": "The Arms Deal Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_i.png" + } + ], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_zebra_dark_light.png" + }, + { + "id": "skin-3998428", + "name": "USP-S | Overgrowth", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_siege_bravo", + "name": "Overgrowth" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "183", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bravo-i", + "name": "The Bravo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bravo_i.png" + } + ], + "crates": [ + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_siege_bravo_light.png" + }, + { + "id": "skin-3998564", + "name": "USP-S | Blood Tiger", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_redtiger", + "name": "Blood Tiger" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "217", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_redtiger_light.png" + }, + { + "id": "skin-3998580", + "name": "USP-S | Serum", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_electric_red", + "name": "Serum" + }, + "min_float": 0, + "max_float": 0.25, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "221", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-ii", + "name": "The Arms Deal 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_ii.png" + } + ], + "crates": [ + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_electric_red_light.png" + }, + { + "id": "skin-3998640", + "name": "USP-S | Night Ops", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_varicamo_night", + "name": "Night Ops" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "236", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-lake", + "name": "The Lake Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_lake.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_varicamo_night_light.png" + }, + { + "id": "skin-3998804", + "name": "USP-S | Stainless", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_usp_stainless", + "name": "Stainless" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "277", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_aq_usp_stainless_light.png" + }, + { + "id": "skin-3998856", + "name": "USP-S | Guardian", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_elegant", + "name": "Guardian" + }, + "min_float": 0, + "max_float": 0.38, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "290", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-2", + "name": "The Phoenix Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_2.png" + } + ], + "crates": [ + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_elegant_light.png" + }, + { + "id": "skin-3998948", + "name": "USP-S | Orion", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_spitfire", + "name": "Orion" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "313", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [], + "special_notes": [ + { + "source": "https://steamcommunity.com/games/CSGO/announcements/detail/1751086783896069815", + "text": "It was removed because one of its creators was also involved with the M4A4 Howl art theft. This is no longer obtainable from the Huntsman Weapon Case, but remains part of The Huntsman Collection and still works with trade-up contracts." + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_spitfire_light.png" + }, + { + "id": "skin-3998968", + "name": "USP-S | Road Rash", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_sandpapered", + "name": "Road Rash" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "318", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_sandpapered_light.png" + }, + { + "id": "skin-3999024", + "name": "USP-S | Royal Blue", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_indigo_usp", + "name": "Royal Blue" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "332", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_hy_indigo_usp_light.png" + }, + { + "id": "skin-3999052", + "name": "USP-S | Caiman", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_kaiman", + "name": "Caiman" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "339", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_kaiman_light.png" + }, + { + "id": "skin-3999152", + "name": "USP-S | Business Class", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_luggage_usp-s", + "name": "Business Class" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "364", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_luggage_usp-s_light.png" + }, + { + "id": "skin-3999468", + "name": "USP-S | Pathfinder", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_labyrinth2", + "name": "Pathfinder" + }, + "min_float": 0, + "max_float": 0.35, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "443", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_labyrinth2_light.png" + }, + { + "id": "skin-3999512", + "name": "USP-S | Para Green", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_khaki_green", + "name": "Para Green" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "454", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_so_khaki_green_light.png" + }, + { + "id": "skin-3999652", + "name": "USP-S | Torque", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_progressiv", + "name": "Torque" + }, + "min_float": 0, + "max_float": 0.46, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "489", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_progressiv_light.png" + }, + { + "id": "skin-3999712", + "name": "USP-S | Kill Confirmed", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_kill_confirmed", + "name": "Kill Confirmed" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "504", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-9", + "name": "The Shadow Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_9.png" + } + ], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_kill_confirmed_light.png" + }, + { + "id": "skin-3999856", + "name": "USP-S | Lead Conduit", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_usp_voltage", + "name": "Lead Conduit" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "540", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-11", + "name": "The Wildfire Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_11.png" + } + ], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_gs_usp_voltage_light.png" + }, + { + "id": "skin-4000244", + "name": "USP-S | Cyrex", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_cyrex", + "name": "Cyrex" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "637", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_cyrex_light.png" + }, + { + "id": "skin-4000308", + "name": "USP-S | Neo-Noir", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usps_noir", + "name": "Neo-Noir" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "653", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usps_noir_light.png" + }, + { + "id": "skin-4000324", + "name": "USP-S | Blueprint", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usps_blueprint", + "name": "Blueprint" + }, + "min_float": 0, + "max_float": 0.86, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "657", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-17", + "name": "The Operation Hydra Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_17.png" + } + ], + "crates": [ + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usps_blueprint_light.png" + }, + { + "id": "skin-4000516", + "name": "USP-S | Cortex", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_cut", + "name": "Cortex" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "705", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_cut_light.png" + }, + { + "id": "skin-4000880", + "name": "USP-S | Check Engine", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_mesh_safetyred", + "name": "Check Engine" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "796", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_mesh_safetyred_light.png" + }, + { + "id": "skin-4000964", + "name": "USP-S | Flashback", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_flashback", + "name": "Flashback" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "817", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-21", + "name": "The Danger Zone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_21.png" + } + ], + "crates": [ + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_flashback_light.png" + }, + { + "id": "skin-4000968", + "name": "USP-S | Purple DDPAT", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_ddpat_purple", + "name": "Purple DDPAT" + }, + "min_float": 0, + "max_float": 0.55, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "818", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_ddpat_purple_light.png" + }, + { + "id": "skin-4001384", + "name": "USP-S | Orange Anolis", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_lizard_red", + "name": "Orange Anolis" + }, + "min_float": 0, + "max_float": 0.37, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "922", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_lizard_red_light.png" + }, + { + "id": "skin-4001660", + "name": "USP-S | Monster Mashup", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_krokos", + "name": "Monster Mashup" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "991", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_krokos_light.png" + }, + { + "id": "skin-4001804", + "name": "USP-S | Target Acquired", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_intelligence_magenta", + "name": "Target Acquired" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1027", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_am_intelligence_magenta_light.png" + }, + { + "id": "skin-4001820", + "name": "USP-S | Ancient Visions", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_ancient_bright", + "name": "Ancient Visions" + }, + "min_float": 0, + "max_float": 0.45, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1031", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_sp_ancient_bright_light.png" + }, + { + "id": "skin-4001856", + "name": "USP-S | The Traitor", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_usps_hangedman", + "name": "The Traitor" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1040", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_gs_usps_hangedman_light.png" + }, + { + "id": "skin-4001956", + "name": "USP-S | Whiteout", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_whiteout_riptide", + "name": "Whiteout" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1065", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_so_whiteout_riptide_light.png" + }, + { + "id": "skin-4002104", + "name": "USP-S | Black Lotus", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_black_lotus", + "name": "Black Lotus" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1102", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-29", + "name": "The Operation Riptide Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_29.png" + } + ], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_black_lotus_light.png" + }, + { + "id": "skin-4002240", + "name": "USP-S | Ticket to Hell", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_to_hell", + "name": "Ticket to Hell" + }, + "min_float": 0, + "max_float": 0.76, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1136", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-30", + "name": "The Dreams & Nightmares Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_30.png" + } + ], + "crates": [ + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_to_hell_light.png" + }, + { + "id": "skin-4002264", + "name": "USP-S | Printstream", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_usp_printstream", + "name": "Printstream" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1142", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_cu_usp_printstream_light.png" + }, + { + "id": "skin-4002708", + "name": "USP-S | Desert Tactical", + "description": "A fan favorite from Counter-Strike Source, the Silenced USP Pistol has a detachable silencer that gives shots less recoil while suppressing attention-getting noise.", + "weapon": { + "id": "weapon_usp_silencer", + "name": "USP-S" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_usps_tactical_camo", + "name": "Desert Tactical" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1253", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_usp_silencer_gs_usps_tactical_camo_light.png" + }, + { + "id": "skin-4128816", + "name": "CZ75-Auto | Crimson Web", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_webs_light.png" + }, + { + "id": "skin-4128896", + "name": "CZ75-Auto | Silver", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "an_silver", + "name": "Silver" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "32", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_an_silver_light.png" + }, + { + "id": "skin-4129356", + "name": "CZ75-Auto | Jungle Dashed", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_tape_short_jungle", + "name": "Jungle Dashed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "147", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ct", + "name": "The Control Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ct.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_sp_tape_short_jungle_light.png" + }, + { + "id": "skin-4129640", + "name": "CZ75-Auto | Hexane", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_bluehex", + "name": "Hexane" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "218", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-esports-iii", + "name": "The eSports 2014 Summer Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_esports_iii.png" + } + ], + "crates": [ + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_bluehex_light.png" + }, + { + "id": "skin-4129840", + "name": "CZ75-Auto | Tread Plate", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_diamond_plate", + "name": "Tread Plate" + }, + "min_float": 0, + "max_float": 0.2, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "268", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_diamond_plate_light.png" + }, + { + "id": "skin-4129844", + "name": "CZ75-Auto | The Fuschia Is Now", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_fuschia", + "name": "The Fuschia Is Now" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "269", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_fuschia_light.png" + }, + { + "id": "skin-4129848", + "name": "CZ75-Auto | Victoria", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aq_etched_cz75", + "name": "Victoria" + }, + "min_float": 0, + "max_float": 0.75, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "270", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-weapons-iii", + "name": "The Arms Deal 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_weapons_iii.png" + } + ], + "crates": [ + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_aq_etched_cz75_light.png" + }, + { + "id": "skin-4129956", + "name": "CZ75-Auto | Tuxedo", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_orca", + "name": "Tuxedo" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "297", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_so_orca_light.png" + }, + { + "id": "skin-4129960", + "name": "CZ75-Auto | Army Sheen", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_army_shine", + "name": "Army Sheen" + }, + "min_float": 0, + "max_float": 0.3, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "298", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_army_shine_light.png" + }, + { + "id": "skin-4130028", + "name": "CZ75-Auto | Poison Dart", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_nitrogen", + "name": "Poison Dart" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "315", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [], + "special_notes": [ + { + "source": "https://steamcommunity.com/games/CSGO/announcements/detail/1751086783896069815", + "text": "It was removed because one of its creators was also involved with the M4A4 Howl art theft. This is no longer obtainable from the Huntsman Weapon Case, but remains part of The Huntsman Collection and still works with trade-up contracts." + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_nitrogen_light.png" + }, + { + "id": "skin-4130056", + "name": "CZ75-Auto | Nitro", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_orange_accents2", + "name": "Nitro" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "322", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-overpass", + "name": "The Overpass Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_overpass.png" + } + ], + "crates": [ + { + "id": "crate-4028", + "name": "ESL One Cologne 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_overpass.8e84964930bb3bcd01328e9ec9d18246b701d815.png" + }, + { + "id": "crate-4037", + "name": "DreamHack 2014 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_overpass.e20120d2211c054e3341ec973e420b2536acdc9e.png" + }, + { + "id": "crate-4085", + "name": "ESL One Katowice 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass.f518bda0e34a1a12346009a5d0a1c0acf8a6efd0.png" + }, + { + "id": "crate-4135", + "name": "ESL One Cologne 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_overpass.cadbf695630fb527e72f6e2df689aa186fc3dba0.png" + }, + { + "id": "crate-4180", + "name": "DreamHack Cluj-Napoca 2015 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_overpass.c1e292eef9daecb7e3a39cd32793909dade27c98.png" + }, + { + "id": "crate-4229", + "name": "MLG Columbus 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_overpass.6ca6faaa7e9bd88599ac9fd566624b82a49253dc.png" + }, + { + "id": "crate-4277", + "name": "Cologne 2016 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_overpass.ae687c6e4b521a9617e982915266157aee4c48bf.png" + }, + { + "id": "crate-4347", + "name": "Atlanta 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_overpass.59427cdda056ed154d4c29df6417a852f56a7a4b.png" + }, + { + "id": "crate-4399", + "name": "Krakow 2017 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_overpass.e4a6cab0326599c25b29135013c3b22aabe2e8b0.png" + }, + { + "id": "crate-4466", + "name": "Boston 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_overpass.0052a59731a791212ab021d5f6fbf839dbe70b3b.png" + }, + { + "id": "crate-4543", + "name": "London 2018 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_overpass.951ad03c7109ed78658b951deb76bbc7808042a0.png" + }, + { + "id": "crate-4593", + "name": "Katowice 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_overpass.cd9bd1317243c478c3a072621e83988b37ab1df1.png" + }, + { + "id": "crate-4663", + "name": "Berlin 2019 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_overpass.002b0661e317dbac2a511b900ac0cf53fb9e2801.png" + }, + { + "id": "crate-4812", + "name": "Stockholm 2021 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_overpass.a1416d178c57d616ece474e36881ac3952a1d865.png" + }, + { + "id": "crate-4838", + "name": "Antwerp 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_overpass.b49a0cf31d712111df1f242aba93847c9957625d.png" + }, + { + "id": "crate-4863", + "name": "Rio 2022 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_overpass.de315f096687f04c68bd32fdd31ae255d3859ca6.png" + }, + { + "id": "crate-4896", + "name": "Paris 2023 Overpass Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_overpass.caf1a3fa2e5f02388268dbdc6b7ae9957ff3be0e.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_so_orange_accents2_light.png" + }, + { + "id": "skin-4130068", + "name": "CZ75-Auto | Chalice", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_royal", + "name": "Chalice" + }, + "min_float": 0, + "max_float": 0.1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "325", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-cobblestone", + "name": "The Cobblestone Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_cobblestone.png" + } + ], + "crates": [ + { + "id": "crate-4027", + "name": "ESL One Cologne 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_cbble.5db3a4b745facff2db79a3ee6819f007bee736c0.png" + }, + { + "id": "crate-4036", + "name": "DreamHack 2014 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_cbble.37d5c8d671c3e181ea9844cd8147e454ae28e2f9.png" + }, + { + "id": "crate-4084", + "name": "ESL One Katowice 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble.8650a00e848d547b173076d5cde6882ec4441c31.png" + }, + { + "id": "crate-4134", + "name": "ESL One Cologne 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_cbble.62138434ebaeb6ebdc4ddf09647bf9d173929048.png" + }, + { + "id": "crate-4179", + "name": "DreamHack Cluj-Napoca 2015 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_cbble.1edc97df2f655873fcaccdee15afce42581cddbc.png" + }, + { + "id": "crate-4228", + "name": "MLG Columbus 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_cbble.3cf5fe89e7edaca0acf314b67cdd18c29ac785d5.png" + }, + { + "id": "crate-4276", + "name": "Cologne 2016 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_cbble.ebac6436d59545e869f193eabb5b704f62d27f30.png" + }, + { + "id": "crate-4346", + "name": "Atlanta 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_cbble.01be0f6fe6487065bc77a8f032920cc192d3348d.png" + }, + { + "id": "crate-4398", + "name": "Krakow 2017 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_krakow2017_promo_de_cbble.6bc507231c3886467a928b363a029483daf6066e.png" + }, + { + "id": "crate-4465", + "name": "Boston 2018 Cobblestone Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_boston2018_promo_de_cbble.f4720b59277ab16da508f76845f85f5dfe0d9df6.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_royal_light.png" + }, + { + "id": "skin-4130100", + "name": "CZ75-Auto | Indigo", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_indigo_and_grey", + "name": "Indigo" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "333", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_so_indigo_and_grey_light.png" + }, + { + "id": "skin-4130104", + "name": "CZ75-Auto | Twist", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_gyrate", + "name": "Twist" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "334", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-3", + "name": "The Huntsman Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_3.png" + } + ], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_gyrate_light.png" + }, + { + "id": "skin-4130168", + "name": "CZ75-Auto | Tigris", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_c75a-tiger", + "name": "Tigris" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "350", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-4", + "name": "The Breakout Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_4.png" + } + ], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_c75a-tiger_light.png" + }, + { + "id": "skin-4130232", + "name": "CZ75-Auto | Green Plaid", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_plaid2", + "name": "Green Plaid" + }, + "min_float": 0, + "max_float": 0.58, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "366", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-baggage", + "name": "The Baggage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_baggage.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_plaid2_light.png" + }, + { + "id": "skin-4130508", + "name": "CZ75-Auto | Pole Position", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_cz75_precision", + "name": "Pole Position" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "435", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-7", + "name": "The Chroma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_7.png" + } + ], + "crates": [ + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_precision_light.png" + }, + { + "id": "skin-4130580", + "name": "CZ75-Auto | Emerald", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "an_emerald", + "name": "Emerald" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "453", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-chopshop", + "name": "The Chop Shop Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_chopshop.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_an_emerald_light.png" + }, + { + "id": "skin-4130672", + "name": "CZ75-Auto | Yellow Jacket", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_cz75a_chastizer", + "name": "Yellow Jacket" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "476", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-8", + "name": "The Falchion Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_8.png" + } + ], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75a_chastizer_light.png" + }, + { + "id": "skin-4130940", + "name": "CZ75-Auto | Red Astor", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_cz75a_redastor", + "name": "Red Astor" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "543", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-12", + "name": "The Chroma 3 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_12.png" + } + ], + "crates": [ + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75a_redastor_light.png" + }, + { + "id": "skin-4131176", + "name": "CZ75-Auto | Imprint", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_cz75_tread", + "name": "Imprint" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "602", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-gamma-2", + "name": "The Gamma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_gamma_2.png" + } + ], + "crates": [ + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75_tread_light.png" + }, + { + "id": "skin-4131256", + "name": "CZ75-Auto | Polymer", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_czv2_mf", + "name": "Polymer" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "622", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-15", + "name": "The Glove Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_15.png" + } + ], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_czv2_mf_light.png" + }, + { + "id": "skin-4131340", + "name": "CZ75-Auto | Xiangliu", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_cz_snakes_purple", + "name": "Xiangliu" + }, + "min_float": 0, + "max_float": 0.56, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "643", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-16", + "name": "The Spectrum Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_16.png" + } + ], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz_snakes_purple_light.png" + }, + { + "id": "skin-4131516", + "name": "CZ75-Auto | Tacticat", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_cz75_tacticat", + "name": "Tacticat" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "687", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75_tacticat_light.png" + }, + { + "id": "skin-4131604", + "name": "CZ75-Auto | Eco", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_cz75_eco", + "name": "Eco" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "709", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_eco_light.png" + }, + { + "id": "skin-4132204", + "name": "CZ75-Auto | Emerald Quartz", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_crystallized_green", + "name": "Emerald Quartz" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "859", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-norse", + "name": "The Norse Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_norse.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_am_crystallized_green_light.png" + }, + { + "id": "skin-4132500", + "name": "CZ75-Auto | Midnight Palm", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_palm_night", + "name": "Midnight Palm" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "933", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-mirage-2021", + "name": "The 2021 Mirage Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_mirage_2021.png" + } + ], + "crates": [ + { + "id": "crate-4810", + "name": "Stockholm 2021 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_mirage.bc6d1bdc42baa20b92469f4e88c5d19f1db2f3a4.png" + }, + { + "id": "crate-4836", + "name": "Antwerp 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_mirage.6fd89e7b1aa99b499085b3ee4d1bc9babe9f0149.png" + }, + { + "id": "crate-4861", + "name": "Rio 2022 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_mirage.090f18086981df3dbebc2e851f7902f6b9238c3c.png" + }, + { + "id": "crate-4894", + "name": "Paris 2023 Mirage Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_mirage.0e826d4e643335cc00448f83a61f68ed1f877bfe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_sp_palm_night_light.png" + }, + { + "id": "skin-4132544", + "name": "CZ75-Auto | Distressed", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_cz75_cerakote", + "name": "Distressed" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "944", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_cerakote_light.png" + }, + { + "id": "skin-4132672", + "name": "CZ75-Auto | Vendetta", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_cz75_vendetta", + "name": "Vendetta" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "976", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-27", + "name": "The Operation Broken Fang Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_27.png" + } + ], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_cz75_vendetta_light.png" + }, + { + "id": "skin-4132912", + "name": "CZ75-Auto | Circaetus", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_cz75_whirlwind", + "name": "Circaetus" + }, + "min_float": 0, + "max_float": 0.9, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1036", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_cu_cz75_whirlwind_light.png" + }, + { + "id": "skin-4133024", + "name": "CZ75-Auto | Syndicate", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_train_cz75", + "name": "Syndicate" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1064", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_gs_train_cz75_light.png" + }, + { + "id": "skin-4133072", + "name": "CZ75-Auto | Framework", + "description": "A fully automatic variant of the CZ75, the CZ75-Auto is the ideal short-term choice for turning the tables and gaining your opponents weapon. But with very little ammo in the magazine, strong trigger discipline is required.", + "weapon": { + "id": "weapon_cz75a", + "name": "CZ75-Auto" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_vertigoillusion", + "name": "Framework" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1076", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-vertigo-2021", + "name": "The 2021 Vertigo Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_vertigo_2021.png" + } + ], + "crates": [ + { + "id": "crate-4815", + "name": "Stockholm 2021 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_vertigo.7080d66022a7ae14944279c0e0d3e1670bd94d9c.png" + }, + { + "id": "crate-4841", + "name": "Antwerp 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_vertigo.b6852a54ab50c53059d8d7a90998e500682d30be.png" + }, + { + "id": "crate-4866", + "name": "Rio 2022 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_vertigo.7c239e2541a763caf8314bd1630b57fc59b9b18d.png" + }, + { + "id": "crate-4899", + "name": "Paris 2023 Vertigo Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_vertigo.da26ce2a8461ef92d71ba5aa0a6502a9646fb336.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_cz75a_hy_vertigoillusion_light.png" + }, + { + "id": "skin-4194352", + "name": "R8 Revolver | Crimson Web", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_hy_webs_light.png" + }, + { + "id": "skin-4194412", + "name": "R8 Revolver | Bone Mask", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_tape", + "name": "Bone Mask" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "27", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-bank", + "name": "The Bank Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_bank.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + } + ], + "special_notes": [ + { + "source": "https://counterstrike.fandom.com/wiki/DreamHack_2013_Souvenir_Package#:~:text=It%20also%20has%20the%20potential%20to%20drop%20a%20bugged%20R8%20Revolver%20%7C%20Bone%20Mask%20from%20the%20Bank%20Collection%2C%20which%20was%20added%20to%20the%20package%20by%20mistake%20on%20December%208th%2C%202015%20in%20the%20R8%20Revolver%20update%2C%20when%20the%20R8%20Revolver%20%7C%20Amber%20Fade%20from%20the%20Dust%20II%20Collection%20was%20added.", + "text": "Was added to the 'DreamHack 2013 Souvenir Package' by mistake making it the only souvenir in the Bank Collection." + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_sp_tape_light.png" + }, + { + "id": "skin-4194452", + "name": "R8 Revolver | Blaze", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_flames", + "name": "Blaze" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "37", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [ + { + "id": "collection-set-train-2021", + "name": "The 2021 Train Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_train_2021.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_aa_flames_light.png" + }, + { + "id": "skin-4194464", + "name": "R8 Revolver | Night", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-ancient", + "name": "The Ancient Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_ancient.png" + } + ], + "crates": [ + { + "id": "crate-4813", + "name": "Stockholm 2021 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_ancient.29085e1a3b545970b4f323999169d711a73673d2.png" + }, + { + "id": "crate-4839", + "name": "Antwerp 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_ancient.be9d7d23627870d11893a4dd8a57a063cec07b03.png" + }, + { + "id": "crate-4864", + "name": "Rio 2022 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_ancient.62851c1371620fd30067840032874561d5b0a5d3.png" + }, + { + "id": "crate-4897", + "name": "Paris 2023 Ancient Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_ancient.3f0d4072a23afdf75c3f8faf739d85825dde9e7c.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_so_night_light.png" + }, + { + "id": "skin-4196392", + "name": "R8 Revolver | Fade", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_fade_revolver", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "522", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-community-10", + "name": "The Revolver Case Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_10.png" + } + ], + "crates": [ + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_aa_fade_revolver_light.png" + }, + { + "id": "skin-4196396", + "name": "R8 Revolver | Amber Fade", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "aa_fade_metallic_revolver", + "name": "Amber Fade" + }, + "min_float": 0, + "max_float": 0.4, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "523", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + } + ], + "collections": [ + { + "id": "collection-set-dust-2", + "name": "The Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2.png" + } + ], + "crates": [ + { + "id": "crate-4006", + "name": "DreamHack 2013 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw13_promo.e2fdfaae196be9b45cd67086e99269f61dc0ca8d.png" + }, + { + "id": "crate-4013", + "name": "EMS One 2014 Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_ems14_promo.a2c1d0b7aae61d8bd734d7dd3f391fa42bfee643.png" + }, + { + "id": "crate-4022", + "name": "ESL One Cologne 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esl14_promo_de_dust2.df8e342f4a1dcae65825ee67238c8c7319d35316.png" + }, + { + "id": "crate-4031", + "name": "DreamHack 2014 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_dhw14_promo_de_dust2.1c381563a79ad42c2e10da7313f6b97242e97d2c.png" + }, + { + "id": "crate-4079", + "name": "ESL One Katowice 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2.fdd533379af9f88b554611acfb06c49717109b3b.png" + }, + { + "id": "crate-4131", + "name": "ESL One Cologne 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_eslcologne2015_promo_de_dust2.ecdaa935c5df5e374878003893bb4ffec789aed3.png" + }, + { + "id": "crate-4176", + "name": "DreamHack Cluj-Napoca 2015 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cluj2015_promo_de_dust2.d21a63669620383248e5ee41eae07233f60ba381.png" + }, + { + "id": "crate-4225", + "name": "MLG Columbus 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_columbus2016_promo_de_dust2.cf28c5c9360806999509a6adce1c02bf30421bf8.png" + }, + { + "id": "crate-4274", + "name": "Cologne 2016 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_cologne2016_promo_de_dust2.a2a6c0bfb1bedb62cab626eb18f3cabad99bd55c.png" + }, + { + "id": "crate-4344", + "name": "Atlanta 2017 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_atlanta2017_promo_de_dust2.81f02d867347bef8e3b3148b212fa449f1ba135c.png" + }, + { + "id": "crate-4542", + "name": "London 2018 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_dust2.1da791ddf20df4175cdaaedc1c45c174ac0fb0b1.png" + }, + { + "id": "crate-4592", + "name": "Katowice 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_dust2.612588f56092dad67e7ec82305d5e77bd3b11712.png" + }, + { + "id": "crate-4662", + "name": "Berlin 2019 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_dust2.453710acd555cc42301fcfc948a5bd53f08b2ce5.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_light.png" + }, + { + "id": "skin-4196684", + "name": "R8 Revolver | Reboot", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_r8_cybersport", + "name": "Reboot" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "595", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-13", + "name": "The Gamma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_13.png" + } + ], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_cu_r8_cybersport_light.png" + }, + { + "id": "skin-4197036", + "name": "R8 Revolver | Llama Cannon", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_r8_llamacannon", + "name": "Llama Cannon" + }, + "min_float": 0.03, + "max_float": 0.7, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "683", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-18", + "name": "The Spectrum 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_18.png" + } + ], + "crates": [ + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_llamacannon_light.png" + }, + { + "id": "skin-4197108", + "name": "R8 Revolver | Grip", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_revolver_tread", + "name": "Grip" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "701", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-19", + "name": "The Clutch Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_19.png" + } + ], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_revolver_tread_light.png" + }, + { + "id": "skin-4197188", + "name": "R8 Revolver | Survivalist", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_r8_survivalist", + "name": "Survivalist" + }, + "min_float": 0, + "max_float": 0.7, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "721", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-20", + "name": "The Horizon Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_20.png" + } + ], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_cu_r8_survivalist_light.png" + }, + { + "id": "skin-4197496", + "name": "R8 Revolver | Nitro", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "so_orange_accents3", + "name": "Nitro" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "798", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-inferno-2", + "name": "The 2018 Inferno Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_inferno_2.png" + } + ], + "crates": [ + { + "id": "crate-4540", + "name": "London 2018 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_london2018_promo_de_inferno.07dbf5526d87ab866da5af57682ffcdfd59362a5.png" + }, + { + "id": "crate-4590", + "name": "Katowice 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_katowice2019_promo_de_inferno.d5b7d5c77ba7cf4e7f9296f8693e5cfae42f2644.png" + }, + { + "id": "crate-4660", + "name": "Berlin 2019 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_berlin2019_promo_de_inferno.00a259328607042322ca7cbc5fe16b2d4162f553.png" + }, + { + "id": "crate-4809", + "name": "Stockholm 2021 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_inferno.db7770ae6dbb5369e8301eae1941fbaf342f9413.png" + }, + { + "id": "crate-4835", + "name": "Antwerp 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_inferno.bbafa6dc6366b53b52fe2e5505063c3d22a9d5e8.png" + }, + { + "id": "crate-4860", + "name": "Rio 2022 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_inferno.8436644b919dfd7b507765755a2c6d947aa043bd.png" + }, + { + "id": "crate-4893", + "name": "Paris 2023 Inferno Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_inferno.6b9e8ab53a451035b0f38e60f64a531a64d83352.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_so_orange_accents3_light.png" + }, + { + "id": "skin-4197676", + "name": "R8 Revolver | Skull Crusher", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "cu_revolver_oppressor", + "name": "Skull Crusher" + }, + "min_float": 0.25, + "max_float": 0.8, + "rarity": { + "id": "rarity_legendary_weapon", + "name": "Classified" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "843", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-22", + "name": "The Prisma Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_22.png" + } + ], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_cu_revolver_oppressor_light.png" + }, + { + "id": "skin-4197768", + "name": "R8 Revolver | Canal Spray", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "sp_spray_water", + "name": "Canal Spray" + }, + "min_float": 0.06, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "866", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-canals", + "name": "The Canals Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_canals.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_sp_spray_water_light.png" + }, + { + "id": "skin-4197872", + "name": "R8 Revolver | Memento", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_r8_memento", + "name": "Memento" + }, + "min_float": 0, + "max_float": 0.8, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "892", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-23", + "name": "The Shattered Web Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_23.png" + } + ], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_memento_light.png" + }, + { + "id": "skin-4198000", + "name": "R8 Revolver | Desert Brush", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "hy_brush_camo_tan", + "name": "Desert Brush" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "924", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-dust-2-2021", + "name": "The 2021 Dust 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_dust_2_2021.png" + } + ], + "crates": [ + { + "id": "crate-4811", + "name": "Stockholm 2021 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_stockh2021_promo_de_dust2.f63b1e6c0b61cbb091decd12b651c44b90952428.png" + }, + { + "id": "crate-4837", + "name": "Antwerp 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_antwerp2022_promo_de_dust2.34c2ad7fef5af8760c1b821cc291b2ae2aeaa46a.png" + }, + { + "id": "crate-4862", + "name": "Rio 2022 Dust II Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_rio2022_promo_de_dust2.f534f7ac83a32ec4917ec1fa488c5407b056b749.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_hy_brush_camo_tan_light.png" + }, + { + "id": "skin-4198112", + "name": "R8 Revolver | Bone Forged", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_r8_leviathan", + "name": "Bone Forged" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "952", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-25", + "name": "The Prisma 2 Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_25.png" + } + ], + "crates": [ + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_leviathan_light.png" + }, + { + "id": "skin-4198348", + "name": "R8 Revolver | Phoenix Marker", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "am_phoenix_tags_blue", + "name": "Phoenix Marker" + }, + "min_float": 0, + "max_float": 0.6, + "rarity": { + "id": "rarity_uncommon_weapon", + "name": "Industrial Grade" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "1011", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-op10-t", + "name": "The Havoc Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_op10_t.png" + } + ], + "crates": [], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_am_phoenix_tags_blue_light.png" + }, + { + "id": "skin-4198492", + "name": "R8 Revolver | Junk Yard", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_r8_rustking", + "name": "Junk Yard" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_rare_weapon", + "name": "Mil-Spec Grade" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1047", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-28", + "name": "The Snakebite Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_28.png" + } + ], + "crates": [ + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_rustking_light.png" + }, + { + "id": "skin-4198884", + "name": "R8 Revolver | Crazy 8", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_revolver_purple_elite", + "name": "Crazy 8" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1145", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-31", + "name": "The Recoil Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_31.png" + } + ], + "crates": [ + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_revolver_purple_elite_light.png" + }, + { + "id": "skin-4199232", + "name": "R8 Revolver | Banana Cannon", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_r8_banana", + "name": "Banana Cannon" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_mythical_weapon", + "name": "Restricted" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1232", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-community-32", + "name": "The Revolution Collection", + "image": "https://raw.githubusercontent.com/steamdatabase/gametracking-csgo/108f1682bf7eeb1420caaf2357da88b614a7e1b0/csgo/pak01_dir/resource/flash/econ/set_icons/set_community_32.png" + } + ], + "crates": [ + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_r8_banana_light.png" + }, + { + "id": "skin-4199252", + "name": "R8 Revolver | Inlay", + "description": "The R8 Revolver delivers a highly accurate and powerful round at the expense of a lengthy trigger-pull. Firing rapidly by fanning the hammer may be the best option when point-blank stopping power is required.", + "weapon": { + "id": "weapon_revolver", + "name": "R8 Revolver" + }, + "category": { + "id": "csgo_inventory_weapon_category_pistols", + "name": "Pistols" + }, + "pattern": { + "id": "gs_revolver_acanthus_bronze", + "name": "Inlay" + }, + "min_float": 0, + "max_float": 0.76, + "rarity": { + "id": "rarity_common_weapon", + "name": "Consumer Grade" + }, + "stattrak": false, + "souvenir": true, + "paint_index": "1237", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [ + { + "id": "collection-set-anubis", + "name": "The Anubis Collection", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/e2f2a36bd13cefa1f798e03e8f2cc98ee96c1304/public/images/set_anubis.png" + } + ], + "crates": [ + { + "id": "crate-4882", + "name": "Anubis Collection Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_anubis_storepromo.652ce0f3f70f92157591a29d3e36f2cebcc27f64.png" + }, + { + "id": "crate-4895", + "name": "Paris 2023 Anubis Souvenir Package", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_paris2023_promo_de_anubis.eb3566385d460dd1510e0f147d9698309f5b7011.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_revolver_gs_revolver_acanthus_bronze_light.png" + }, + { + "id": "skin-32768020", + "name": "★ Bayonet | Forest DDPAT", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_ddpat_light.png" + }, + { + "id": "skin-32768048", + "name": "★ Bayonet | Crimson Web", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_webs_light.png" + }, + { + "id": "skin-32768152", + "name": "★ Bayonet | Fade", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aa_fade_light.png" + }, + { + "id": "skin-32768160", + "name": "★ Bayonet | Night", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_so_night_light.png" + }, + { + "id": "skin-32768168", + "name": "★ Bayonet | Blue Steel", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_blued_light.png" + }, + { + "id": "skin-32768172", + "name": "★ Bayonet | Stained", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_forced_light.png" + }, + { + "id": "skin-32768176", + "name": "★ Bayonet | Case Hardened", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_oiled_light.png" + }, + { + "id": "skin-32768236", + "name": "★ Bayonet | Slaughter", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_zebra_light.png" + }, + { + "id": "skin-32768288", + "name": "★ Bayonet | Safari Mesh", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_sp_mesh_tan_light.png" + }, + { + "id": "skin-32768308", + "name": "★ Bayonet | Boreal Forest", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_forest_boreal_light.png" + }, + { + "id": "skin-32768392", + "name": "★ Bayonet | Ultraviolet", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_so_purple_light.png" + }, + { + "id": "skin-32768572", + "name": "★ Bayonet | Urban Masked", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_sp_tape_urban_light.png" + }, + { + "id": "skin-32768700", + "name": "★ Bayonet | Scorched", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_sp_dapple_light.png" + }, + { + "id": "skin-32769636", + "name": "★ Bayonet | Tiger Tooth", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_an_tiger_orange_light.png" + }, + { + "id": "skin-32769640", + "name": "★ Bayonet | Damascus Steel", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "410", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_damascus_light.png" + }, + { + "id": "skin-32769652", + "name": "★ Bayonet | Marble Fade", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_marble_fade_light.png" + }, + { + "id": "skin-32769656", + "name": "★ Bayonet | Rust Coat", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_aq_steel_knife_light.png" + }, + { + "id": "skin-32769660", + "name": "★ Bayonet | Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_ruby_marbleized_light.png" + }, + { + "id": "skin-32769664", + "name": "★ Bayonet | Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-32769668", + "name": "★ Bayonet | Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-32769672", + "name": "★ Bayonet | Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase1_light.png" + }, + { + "id": "skin-32769676", + "name": "★ Bayonet | Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase2_light.png" + }, + { + "id": "skin-32769680", + "name": "★ Bayonet | Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase3_light.png" + }, + { + "id": "skin-32769684", + "name": "★ Bayonet | Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_doppler_phase4_light.png" + }, + { + "id": "skin-32770232", + "name": "★ Bayonet | Lore", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_bayonet_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "558", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_cu_bayonet_lore_light.png" + }, + { + "id": "skin-32770252", + "name": "★ Bayonet | Black Laminate", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_bayonet_stonewash", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "563", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_cu_bayonet_stonewash_light.png" + }, + { + "id": "skin-32770272", + "name": "★ Bayonet | Gamma Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_emerald_marbleized_light.png" + }, + { + "id": "skin-32770276", + "name": "★ Bayonet | Gamma Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-32770280", + "name": "★ Bayonet | Gamma Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-32770284", + "name": "★ Bayonet | Gamma Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-32770288", + "name": "★ Bayonet | Gamma Doppler", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-32770292", + "name": "★ Bayonet | Autotronic", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_bayonet_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "573", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_gs_bayonet_autotronic_light.png" + }, + { + "id": "skin-32770312", + "name": "★ Bayonet | Bright Water", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "578", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_hy_ocean_knife_light.png" + }, + { + "id": "skin-32770320", + "name": "★ Bayonet | Freehand", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "weapon_bayonet", + "name": "Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "580", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_bayonet_am_marked_up_light.png" + }, + { + "id": "skin-32964628", + "name": "★ Classic Knife | Forest DDPAT", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_hy_ddpat_light.png" + }, + { + "id": "skin-32964656", + "name": "★ Classic Knife | Crimson Web", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_hy_webs_light.png" + }, + { + "id": "skin-32964760", + "name": "★ Classic Knife | Fade", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aa_fade_light.png" + }, + { + "id": "skin-32964776", + "name": "★ Classic Knife | Blue Steel", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aq_blued_light.png" + }, + { + "id": "skin-32964780", + "name": "★ Classic Knife | Stained", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aq_forced_light.png" + }, + { + "id": "skin-32964784", + "name": "★ Classic Knife | Case Hardened", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_aq_oiled_light.png" + }, + { + "id": "skin-32964844", + "name": "★ Classic Knife | Slaughter", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_am_zebra_light.png" + }, + { + "id": "skin-32964896", + "name": "★ Classic Knife | Safari Mesh", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_mesh_tan_light.png" + }, + { + "id": "skin-32964916", + "name": "★ Classic Knife | Boreal Forest", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_hy_forest_boreal_light.png" + }, + { + "id": "skin-32965180", + "name": "★ Classic Knife | Urban Masked", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_tape_urban_light.png" + }, + { + "id": "skin-32965308", + "name": "★ Classic Knife | Scorched", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_dapple_light.png" + }, + { + "id": "skin-32967548", + "name": "★ Classic Knife | Night Stripe", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "weapon_knife_css", + "name": "Classic Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_css_sp_nightstripe_light.png" + }, + { + "id": "skin-33095700", + "name": "★ Flip Knife | Forest DDPAT", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_ddpat_light.png" + }, + { + "id": "skin-33095728", + "name": "★ Flip Knife | Crimson Web", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_webs_light.png" + }, + { + "id": "skin-33095832", + "name": "★ Flip Knife | Fade", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aa_fade_light.png" + }, + { + "id": "skin-33095840", + "name": "★ Flip Knife | Night", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_so_night_light.png" + }, + { + "id": "skin-33095848", + "name": "★ Flip Knife | Blue Steel", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_blued_light.png" + }, + { + "id": "skin-33095852", + "name": "★ Flip Knife | Stained", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_forced_light.png" + }, + { + "id": "skin-33095856", + "name": "★ Flip Knife | Case Hardened", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_oiled_light.png" + }, + { + "id": "skin-33095916", + "name": "★ Flip Knife | Slaughter", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_zebra_light.png" + }, + { + "id": "skin-33095968", + "name": "★ Flip Knife | Safari Mesh", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_sp_mesh_tan_light.png" + }, + { + "id": "skin-33095988", + "name": "★ Flip Knife | Boreal Forest", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_forest_boreal_light.png" + }, + { + "id": "skin-33096072", + "name": "★ Flip Knife | Ultraviolet", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_so_purple_light.png" + }, + { + "id": "skin-33096252", + "name": "★ Flip Knife | Urban Masked", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_sp_tape_urban_light.png" + }, + { + "id": "skin-33096380", + "name": "★ Flip Knife | Scorched", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_sp_dapple_light.png" + }, + { + "id": "skin-33097316", + "name": "★ Flip Knife | Tiger Tooth", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_an_tiger_orange_light.png" + }, + { + "id": "skin-33097320", + "name": "★ Flip Knife | Damascus Steel", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "410", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_damascus_light.png" + }, + { + "id": "skin-33097332", + "name": "★ Flip Knife | Marble Fade", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_marble_fade_light.png" + }, + { + "id": "skin-33097336", + "name": "★ Flip Knife | Rust Coat", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_aq_steel_knife_light.png" + }, + { + "id": "skin-33097340", + "name": "★ Flip Knife | Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33097344", + "name": "★ Flip Knife | Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-33097348", + "name": "★ Flip Knife | Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-33097352", + "name": "★ Flip Knife | Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase1_light.png" + }, + { + "id": "skin-33097356", + "name": "★ Flip Knife | Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase2_light.png" + }, + { + "id": "skin-33097360", + "name": "★ Flip Knife | Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase3_light.png" + }, + { + "id": "skin-33097364", + "name": "★ Flip Knife | Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_doppler_phase4_light.png" + }, + { + "id": "skin-33097916", + "name": "★ Flip Knife | Lore", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_flip_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "559", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_cu_flip_lore_light.png" + }, + { + "id": "skin-33097936", + "name": "★ Flip Knife | Black Laminate", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_flip_stonewash", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "564", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_cu_flip_stonewash_light.png" + }, + { + "id": "skin-33097952", + "name": "★ Flip Knife | Gamma Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33097956", + "name": "★ Flip Knife | Gamma Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33097960", + "name": "★ Flip Knife | Gamma Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33097964", + "name": "★ Flip Knife | Gamma Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33097968", + "name": "★ Flip Knife | Gamma Doppler", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33097976", + "name": "★ Flip Knife | Autotronic", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_flip_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "574", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_gs_flip_autotronic_light.png" + }, + { + "id": "skin-33097992", + "name": "★ Flip Knife | Bright Water", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "578", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_hy_ocean_knife_light.png" + }, + { + "id": "skin-33098000", + "name": "★ Flip Knife | Freehand", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "weapon_knife_flip", + "name": "Flip Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "580", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_flip_am_marked_up_light.png" + }, + { + "id": "skin-33161236", + "name": "★ Gut Knife | Forest DDPAT", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_ddpat_light.png" + }, + { + "id": "skin-33161264", + "name": "★ Gut Knife | Crimson Web", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_webs_light.png" + }, + { + "id": "skin-33161368", + "name": "★ Gut Knife | Fade", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aa_fade_light.png" + }, + { + "id": "skin-33161376", + "name": "★ Gut Knife | Night", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_so_night_light.png" + }, + { + "id": "skin-33161384", + "name": "★ Gut Knife | Blue Steel", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_blued_light.png" + }, + { + "id": "skin-33161388", + "name": "★ Gut Knife | Stained", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_forced_light.png" + }, + { + "id": "skin-33161392", + "name": "★ Gut Knife | Case Hardened", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_oiled_light.png" + }, + { + "id": "skin-33161452", + "name": "★ Gut Knife | Slaughter", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_zebra_light.png" + }, + { + "id": "skin-33161504", + "name": "★ Gut Knife | Safari Mesh", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_sp_mesh_tan_light.png" + }, + { + "id": "skin-33161524", + "name": "★ Gut Knife | Boreal Forest", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_forest_boreal_light.png" + }, + { + "id": "skin-33161608", + "name": "★ Gut Knife | Ultraviolet", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_so_purple_light.png" + }, + { + "id": "skin-33161788", + "name": "★ Gut Knife | Urban Masked", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_sp_tape_urban_light.png" + }, + { + "id": "skin-33161916", + "name": "★ Gut Knife | Scorched", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_sp_dapple_light.png" + }, + { + "id": "skin-33162852", + "name": "★ Gut Knife | Tiger Tooth", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_an_tiger_orange_light.png" + }, + { + "id": "skin-33162856", + "name": "★ Gut Knife | Damascus Steel", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "410", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_damascus_light.png" + }, + { + "id": "skin-33162868", + "name": "★ Gut Knife | Marble Fade", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_marble_fade_light.png" + }, + { + "id": "skin-33162872", + "name": "★ Gut Knife | Rust Coat", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_aq_steel_knife_light.png" + }, + { + "id": "skin-33162876", + "name": "★ Gut Knife | Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33162880", + "name": "★ Gut Knife | Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-33162884", + "name": "★ Gut Knife | Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-33162888", + "name": "★ Gut Knife | Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase1_light.png" + }, + { + "id": "skin-33162892", + "name": "★ Gut Knife | Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase2_light.png" + }, + { + "id": "skin-33162896", + "name": "★ Gut Knife | Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase3_light.png" + }, + { + "id": "skin-33162900", + "name": "★ Gut Knife | Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_doppler_phase4_light.png" + }, + { + "id": "skin-33163456", + "name": "★ Gut Knife | Lore", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_gut_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "560", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_cu_gut_lore_light.png" + }, + { + "id": "skin-33163476", + "name": "★ Gut Knife | Black Laminate", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_gut_stonewash", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "565", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_cu_gut_stonewash_light.png" + }, + { + "id": "skin-33163488", + "name": "★ Gut Knife | Gamma Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33163492", + "name": "★ Gut Knife | Gamma Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33163496", + "name": "★ Gut Knife | Gamma Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33163500", + "name": "★ Gut Knife | Gamma Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33163504", + "name": "★ Gut Knife | Gamma Doppler", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33163516", + "name": "★ Gut Knife | Autotronic", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_gut_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "575", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_gs_gut_autotronic_light.png" + }, + { + "id": "skin-33163528", + "name": "★ Gut Knife | Bright Water", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "578", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_hy_ocean_knife_light.png" + }, + { + "id": "skin-33163536", + "name": "★ Gut Knife | Freehand", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "weapon_knife_gut", + "name": "Gut Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "580", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gut_am_marked_up_light.png" + }, + { + "id": "skin-33226772", + "name": "★ Karambit | Forest DDPAT", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_ddpat_light.png" + }, + { + "id": "skin-33226800", + "name": "★ Karambit | Crimson Web", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_webs_light.png" + }, + { + "id": "skin-33226904", + "name": "★ Karambit | Fade", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aa_fade_light.png" + }, + { + "id": "skin-33226912", + "name": "★ Karambit | Night", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_so_night_light.png" + }, + { + "id": "skin-33226920", + "name": "★ Karambit | Blue Steel", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_blued_light.png" + }, + { + "id": "skin-33226924", + "name": "★ Karambit | Stained", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_forced_light.png" + }, + { + "id": "skin-33226928", + "name": "★ Karambit | Case Hardened", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_oiled_light.png" + }, + { + "id": "skin-33226988", + "name": "★ Karambit | Slaughter", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_zebra_light.png" + }, + { + "id": "skin-33227040", + "name": "★ Karambit | Safari Mesh", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_sp_mesh_tan_light.png" + }, + { + "id": "skin-33227060", + "name": "★ Karambit | Boreal Forest", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_forest_boreal_light.png" + }, + { + "id": "skin-33227144", + "name": "★ Karambit | Ultraviolet", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_so_purple_light.png" + }, + { + "id": "skin-33227324", + "name": "★ Karambit | Urban Masked", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_sp_tape_urban_light.png" + }, + { + "id": "skin-33227452", + "name": "★ Karambit | Scorched", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_sp_dapple_light.png" + }, + { + "id": "skin-33228388", + "name": "★ Karambit | Tiger Tooth", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_an_tiger_orange_light.png" + }, + { + "id": "skin-33228392", + "name": "★ Karambit | Damascus Steel", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "410", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_damascus_light.png" + }, + { + "id": "skin-33228404", + "name": "★ Karambit | Marble Fade", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_marble_fade_light.png" + }, + { + "id": "skin-33228408", + "name": "★ Karambit | Rust Coat", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_aq_steel_knife_light.png" + }, + { + "id": "skin-33228412", + "name": "★ Karambit | Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33228416", + "name": "★ Karambit | Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-33228420", + "name": "★ Karambit | Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-33228424", + "name": "★ Karambit | Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase1_light.png" + }, + { + "id": "skin-33228428", + "name": "★ Karambit | Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase2_light.png" + }, + { + "id": "skin-33228432", + "name": "★ Karambit | Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase3_light.png" + }, + { + "id": "skin-33228436", + "name": "★ Karambit | Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_doppler_phase4_light.png" + }, + { + "id": "skin-33228996", + "name": "★ Karambit | Lore", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_karam_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "561", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_cu_karam_lore_light.png" + }, + { + "id": "skin-33229016", + "name": "★ Karambit | Black Laminate", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_karam_stonewash", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "566", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_cu_karam_stonewash_light.png" + }, + { + "id": "skin-33229024", + "name": "★ Karambit | Gamma Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33229028", + "name": "★ Karambit | Gamma Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33229032", + "name": "★ Karambit | Gamma Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33229036", + "name": "★ Karambit | Gamma Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33229040", + "name": "★ Karambit | Gamma Doppler", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33229056", + "name": "★ Karambit | Autotronic", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_karam_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "576", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_gs_karam_autotronic_light.png" + }, + { + "id": "skin-33229064", + "name": "★ Karambit | Bright Water", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "578", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_hy_ocean_knife_light.png" + }, + { + "id": "skin-33229080", + "name": "★ Karambit | Freehand", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "weapon_knife_karambit", + "name": "Karambit" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up_fine", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "582", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_karambit_am_marked_up_fine_light.png" + }, + { + "id": "skin-33292308", + "name": "★ M9 Bayonet | Forest DDPAT", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_ddpat_light.png" + }, + { + "id": "skin-33292336", + "name": "★ M9 Bayonet | Crimson Web", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_webs_light.png" + }, + { + "id": "skin-33292440", + "name": "★ M9 Bayonet | Fade", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aa_fade_light.png" + }, + { + "id": "skin-33292448", + "name": "★ M9 Bayonet | Night", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_so_night_light.png" + }, + { + "id": "skin-33292456", + "name": "★ M9 Bayonet | Blue Steel", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_blued_light.png" + }, + { + "id": "skin-33292460", + "name": "★ M9 Bayonet | Stained", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_forced_light.png" + }, + { + "id": "skin-33292464", + "name": "★ M9 Bayonet | Case Hardened", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_oiled_light.png" + }, + { + "id": "skin-33292524", + "name": "★ M9 Bayonet | Slaughter", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_zebra_light.png" + }, + { + "id": "skin-33292576", + "name": "★ M9 Bayonet | Safari Mesh", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_sp_mesh_tan_light.png" + }, + { + "id": "skin-33292596", + "name": "★ M9 Bayonet | Boreal Forest", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_forest_boreal_light.png" + }, + { + "id": "skin-33292680", + "name": "★ M9 Bayonet | Ultraviolet", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_so_purple_light.png" + }, + { + "id": "skin-33292860", + "name": "★ M9 Bayonet | Urban Masked", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_sp_tape_urban_light.png" + }, + { + "id": "skin-33292988", + "name": "★ M9 Bayonet | Scorched", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_sp_dapple_light.png" + }, + { + "id": "skin-33293924", + "name": "★ M9 Bayonet | Tiger Tooth", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_an_tiger_orange_light.png" + }, + { + "id": "skin-33293932", + "name": "★ M9 Bayonet | Damascus Steel", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_90", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "411", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_damascus_90_light.png" + }, + { + "id": "skin-33293940", + "name": "★ M9 Bayonet | Marble Fade", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_marble_fade_light.png" + }, + { + "id": "skin-33293944", + "name": "★ M9 Bayonet | Rust Coat", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_aq_steel_knife_light.png" + }, + { + "id": "skin-33293948", + "name": "★ M9 Bayonet | Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33293952", + "name": "★ M9 Bayonet | Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-33293956", + "name": "★ M9 Bayonet | Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-33293960", + "name": "★ M9 Bayonet | Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase1_light.png" + }, + { + "id": "skin-33293964", + "name": "★ M9 Bayonet | Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase2_light.png" + }, + { + "id": "skin-33293968", + "name": "★ M9 Bayonet | Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase3_light.png" + }, + { + "id": "skin-33293972", + "name": "★ M9 Bayonet | Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4061", + "name": "Chroma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_6.4a84ff42a0e0149973c8580dd23f8ba6e7c68142.png" + }, + { + "id": "crate-4089", + "name": "Chroma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_7.57286f710260d1a8eb4e93c4795ae7ca980ea981.png" + }, + { + "id": "crate-4233", + "name": "Chroma 3 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_12.7555fc0b45c4d1e0ff1c117af393463f29f20f66.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase4_light.png" + }, + { + "id": "skin-33294536", + "name": "★ M9 Bayonet | Lore", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_m9_bay_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "562", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_lore_light.png" + }, + { + "id": "skin-33294556", + "name": "★ M9 Bayonet | Black Laminate", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_m9_bay_stonewash", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "567", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_cu_m9_bay_stonewash_light.png" + }, + { + "id": "skin-33294560", + "name": "★ M9 Bayonet | Gamma Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33294564", + "name": "★ M9 Bayonet | Gamma Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33294568", + "name": "★ M9 Bayonet | Gamma Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33294572", + "name": "★ M9 Bayonet | Gamma Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33294576", + "name": "★ M9 Bayonet | Gamma Doppler", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33294596", + "name": "★ M9 Bayonet | Autotronic", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_m9_bay_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "577", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_gs_m9_bay_autotronic_light.png" + }, + { + "id": "skin-33294604", + "name": "★ M9 Bayonet | Bright Water", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife_90", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "579", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_hy_ocean_knife_90_light.png" + }, + { + "id": "skin-33294612", + "name": "★ M9 Bayonet | Freehand", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "weapon_knife_m9_bayonet", + "name": "M9 Bayonet" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up_90", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "581", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4236", + "name": "Gamma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_13.9a7d2f757ddbdc915aa005def74ac186a457346a.png" + }, + { + "id": "crate-4281", + "name": "Gamma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_gamma_2.ab916b78e7093039642cc7538466bf87cf314363.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_m9_bayonet_am_marked_up_90_light.png" + }, + { + "id": "skin-33357844", + "name": "★ Huntsman Knife | Forest DDPAT", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_ddpat_light.png" + }, + { + "id": "skin-33357872", + "name": "★ Huntsman Knife | Crimson Web", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_webs_light.png" + }, + { + "id": "skin-33357976", + "name": "★ Huntsman Knife | Fade", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aa_fade_light.png" + }, + { + "id": "skin-33357984", + "name": "★ Huntsman Knife | Night", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_so_night_light.png" + }, + { + "id": "skin-33357992", + "name": "★ Huntsman Knife | Blue Steel", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_blued_light.png" + }, + { + "id": "skin-33357996", + "name": "★ Huntsman Knife | Stained", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_forced_light.png" + }, + { + "id": "skin-33358000", + "name": "★ Huntsman Knife | Case Hardened", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_oiled_light.png" + }, + { + "id": "skin-33358060", + "name": "★ Huntsman Knife | Slaughter", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_zebra_light.png" + }, + { + "id": "skin-33358112", + "name": "★ Huntsman Knife | Safari Mesh", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_sp_mesh_tan_light.png" + }, + { + "id": "skin-33358132", + "name": "★ Huntsman Knife | Boreal Forest", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_forest_boreal_light.png" + }, + { + "id": "skin-33358396", + "name": "★ Huntsman Knife | Urban Masked", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_sp_tape_urban_light.png" + }, + { + "id": "skin-33358524", + "name": "★ Huntsman Knife | Scorched", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_sp_dapple_light.png" + }, + { + "id": "skin-33359460", + "name": "★ Huntsman Knife | Tiger Tooth", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_an_tiger_orange_light.png" + }, + { + "id": "skin-33359468", + "name": "★ Huntsman Knife | Damascus Steel", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_90", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "411", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_damascus_90_light.png" + }, + { + "id": "skin-33359476", + "name": "★ Huntsman Knife | Marble Fade", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_marble_fade_light.png" + }, + { + "id": "skin-33359480", + "name": "★ Huntsman Knife | Rust Coat", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_aq_steel_knife_light.png" + }, + { + "id": "skin-33359484", + "name": "★ Huntsman Knife | Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33359488", + "name": "★ Huntsman Knife | Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-33359492", + "name": "★ Huntsman Knife | Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-33359496", + "name": "★ Huntsman Knife | Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase1_light.png" + }, + { + "id": "skin-33359500", + "name": "★ Huntsman Knife | Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase2_light.png" + }, + { + "id": "skin-33359504", + "name": "★ Huntsman Knife | Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase3_light.png" + }, + { + "id": "skin-33359508", + "name": "★ Huntsman Knife | Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_doppler_phase4_light.png" + }, + { + "id": "skin-33360096", + "name": "★ Huntsman Knife | Gamma Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33360100", + "name": "★ Huntsman Knife | Gamma Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33360104", + "name": "★ Huntsman Knife | Gamma Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33360108", + "name": "★ Huntsman Knife | Gamma Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33360112", + "name": "★ Huntsman Knife | Gamma Doppler", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33360140", + "name": "★ Huntsman Knife | Bright Water", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife_90", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "579", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_hy_ocean_knife_90_light.png" + }, + { + "id": "skin-33360148", + "name": "★ Huntsman Knife | Freehand", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up_90", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "581", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_am_marked_up_90_light.png" + }, + { + "id": "skin-33360304", + "name": "★ Huntsman Knife | Ultraviolet", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_purple_huntsman", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "620", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_cu_purple_huntsman_light.png" + }, + { + "id": "skin-33362252", + "name": "★ Huntsman Knife | Lore", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_huntsman_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1107", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_cu_huntsman_lore_light.png" + }, + { + "id": "skin-33362272", + "name": "★ Huntsman Knife | Black Laminate", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_huntsman_black_laminate", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1112", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_gs_huntsman_black_laminate_light.png" + }, + { + "id": "skin-33362292", + "name": "★ Huntsman Knife | Autotronic", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "weapon_knife_tactical", + "name": "Huntsman Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_huntsman_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1117", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_tactical_gs_huntsman_autotronic_light.png" + }, + { + "id": "skin-33554452", + "name": "★ Falchion Knife | Forest DDPAT", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_ddpat_light.png" + }, + { + "id": "skin-33554480", + "name": "★ Falchion Knife | Crimson Web", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_webs_light.png" + }, + { + "id": "skin-33554584", + "name": "★ Falchion Knife | Fade", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aa_fade_light.png" + }, + { + "id": "skin-33554592", + "name": "★ Falchion Knife | Night", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_so_night_light.png" + }, + { + "id": "skin-33554600", + "name": "★ Falchion Knife | Blue Steel", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_blued_light.png" + }, + { + "id": "skin-33554604", + "name": "★ Falchion Knife | Stained", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_forced_light.png" + }, + { + "id": "skin-33554608", + "name": "★ Falchion Knife | Case Hardened", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_oiled_light.png" + }, + { + "id": "skin-33554668", + "name": "★ Falchion Knife | Slaughter", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_zebra_light.png" + }, + { + "id": "skin-33554720", + "name": "★ Falchion Knife | Safari Mesh", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_sp_mesh_tan_light.png" + }, + { + "id": "skin-33554740", + "name": "★ Falchion Knife | Boreal Forest", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_forest_boreal_light.png" + }, + { + "id": "skin-33555004", + "name": "★ Falchion Knife | Urban Masked", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_sp_tape_urban_light.png" + }, + { + "id": "skin-33555132", + "name": "★ Falchion Knife | Scorched", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_sp_dapple_light.png" + }, + { + "id": "skin-33556068", + "name": "★ Falchion Knife | Tiger Tooth", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_an_tiger_orange_light.png" + }, + { + "id": "skin-33556076", + "name": "★ Falchion Knife | Damascus Steel", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_90", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "411", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_damascus_90_light.png" + }, + { + "id": "skin-33556084", + "name": "★ Falchion Knife | Marble Fade", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_marble_fade_light.png" + }, + { + "id": "skin-33556088", + "name": "★ Falchion Knife | Rust Coat", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_aq_steel_knife_light.png" + }, + { + "id": "skin-33556092", + "name": "★ Falchion Knife | Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33556096", + "name": "★ Falchion Knife | Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-33556100", + "name": "★ Falchion Knife | Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-33556104", + "name": "★ Falchion Knife | Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase1_light.png" + }, + { + "id": "skin-33556108", + "name": "★ Falchion Knife | Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase2_light.png" + }, + { + "id": "skin-33556112", + "name": "★ Falchion Knife | Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase3_light.png" + }, + { + "id": "skin-33556116", + "name": "★ Falchion Knife | Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_doppler_phase4_light.png" + }, + { + "id": "skin-33556704", + "name": "★ Falchion Knife | Gamma Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33556708", + "name": "★ Falchion Knife | Gamma Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33556712", + "name": "★ Falchion Knife | Gamma Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33556716", + "name": "★ Falchion Knife | Gamma Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33556720", + "name": "★ Falchion Knife | Gamma Doppler", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33556748", + "name": "★ Falchion Knife | Bright Water", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife_90", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "579", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_hy_ocean_knife_90_light.png" + }, + { + "id": "skin-33556756", + "name": "★ Falchion Knife | Freehand", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up_90", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "581", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_am_marked_up_90_light.png" + }, + { + "id": "skin-33556916", + "name": "★ Falchion Knife | Ultraviolet", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple_falchion", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "621", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_so_purple_falchion_light.png" + }, + { + "id": "skin-33558856", + "name": "★ Falchion Knife | Lore", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_falchion_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 0.65, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1106", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_cu_falchion_lore_light.png" + }, + { + "id": "skin-33558876", + "name": "★ Falchion Knife | Black Laminate", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_falchion_black_laminate", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1111", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_gs_falchion_black_laminate_light.png" + }, + { + "id": "skin-33558896", + "name": "★ Falchion Knife | Autotronic", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "weapon_knife_falchion", + "name": "Falchion Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_falchion_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1116", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_falchion_gs_falchion_autotronic_light.png" + }, + { + "id": "skin-33685524", + "name": "★ Bowie Knife | Forest DDPAT", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_light.png" + }, + { + "id": "skin-33685552", + "name": "★ Bowie Knife | Crimson Web", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_webs_light.png" + }, + { + "id": "skin-33685656", + "name": "★ Bowie Knife | Fade", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aa_fade_light.png" + }, + { + "id": "skin-33685664", + "name": "★ Bowie Knife | Night", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_so_night_light.png" + }, + { + "id": "skin-33685672", + "name": "★ Bowie Knife | Blue Steel", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_blued_light.png" + }, + { + "id": "skin-33685676", + "name": "★ Bowie Knife | Stained", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_forced_light.png" + }, + { + "id": "skin-33685680", + "name": "★ Bowie Knife | Case Hardened", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_oiled_light.png" + }, + { + "id": "skin-33685740", + "name": "★ Bowie Knife | Slaughter", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_zebra_light.png" + }, + { + "id": "skin-33685792", + "name": "★ Bowie Knife | Safari Mesh", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_light.png" + }, + { + "id": "skin-33685812", + "name": "★ Bowie Knife | Boreal Forest", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_light.png" + }, + { + "id": "skin-33685896", + "name": "★ Bowie Knife | Ultraviolet", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_so_purple_light.png" + }, + { + "id": "skin-33686076", + "name": "★ Bowie Knife | Urban Masked", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_light.png" + }, + { + "id": "skin-33686204", + "name": "★ Bowie Knife | Scorched", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_sp_dapple_light.png" + }, + { + "id": "skin-33687140", + "name": "★ Bowie Knife | Tiger Tooth", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_an_tiger_orange_light.png" + }, + { + "id": "skin-33687148", + "name": "★ Bowie Knife | Damascus Steel", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_90", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "411", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_damascus_90_light.png" + }, + { + "id": "skin-33687156", + "name": "★ Bowie Knife | Marble Fade", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_marble_fade_light.png" + }, + { + "id": "skin-33687160", + "name": "★ Bowie Knife | Rust Coat", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_aq_steel_knife_light.png" + }, + { + "id": "skin-33687164", + "name": "★ Bowie Knife | Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33687168", + "name": "★ Bowie Knife | Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-33687172", + "name": "★ Bowie Knife | Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-33687176", + "name": "★ Bowie Knife | Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase1_light.png" + }, + { + "id": "skin-33687180", + "name": "★ Bowie Knife | Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase2_light.png" + }, + { + "id": "skin-33687184", + "name": "★ Bowie Knife | Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase3_light.png" + }, + { + "id": "skin-33687188", + "name": "★ Bowie Knife | Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_doppler_phase4_light.png" + }, + { + "id": "skin-33687776", + "name": "★ Bowie Knife | Gamma Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33687780", + "name": "★ Bowie Knife | Gamma Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33687784", + "name": "★ Bowie Knife | Gamma Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33687788", + "name": "★ Bowie Knife | Gamma Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33687792", + "name": "★ Bowie Knife | Gamma Doppler", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33687820", + "name": "★ Bowie Knife | Bright Water", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife_90", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "579", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_hy_ocean_knife_90_light.png" + }, + { + "id": "skin-33687828", + "name": "★ Bowie Knife | Freehand", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up_90", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "581", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_am_marked_up_90_light.png" + }, + { + "id": "skin-33689920", + "name": "★ Bowie Knife | Lore", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_bowie_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1104", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_cu_bowie_lore_light.png" + }, + { + "id": "skin-33689940", + "name": "★ Bowie Knife | Black Laminate", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_bowie_black_laminate", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1109", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_gs_bowie_black_laminate_light.png" + }, + { + "id": "skin-33689960", + "name": "★ Bowie Knife | Autotronic", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "weapon_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_bowie_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1114", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_survival_bowie_gs_bowie_autotronic_light.png" + }, + { + "id": "skin-33751060", + "name": "★ Butterfly Knife | Forest DDPAT", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_ddpat_light.png" + }, + { + "id": "skin-33751088", + "name": "★ Butterfly Knife | Crimson Web", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_webs_light.png" + }, + { + "id": "skin-33751192", + "name": "★ Butterfly Knife | Fade", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aa_fade_light.png" + }, + { + "id": "skin-33751200", + "name": "★ Butterfly Knife | Night", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_so_night_light.png" + }, + { + "id": "skin-33751208", + "name": "★ Butterfly Knife | Blue Steel", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_blued_light.png" + }, + { + "id": "skin-33751212", + "name": "★ Butterfly Knife | Stained", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_forced_light.png" + }, + { + "id": "skin-33751216", + "name": "★ Butterfly Knife | Case Hardened", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_oiled_light.png" + }, + { + "id": "skin-33751276", + "name": "★ Butterfly Knife | Slaughter", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_zebra_light.png" + }, + { + "id": "skin-33751328", + "name": "★ Butterfly Knife | Safari Mesh", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_light.png" + }, + { + "id": "skin-33751348", + "name": "★ Butterfly Knife | Boreal Forest", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_light.png" + }, + { + "id": "skin-33751432", + "name": "★ Butterfly Knife | Ultraviolet", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_so_purple_light.png" + }, + { + "id": "skin-33751612", + "name": "★ Butterfly Knife | Urban Masked", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_sp_tape_urban_light.png" + }, + { + "id": "skin-33751740", + "name": "★ Butterfly Knife | Scorched", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_sp_dapple_light.png" + }, + { + "id": "skin-33752676", + "name": "★ Butterfly Knife | Tiger Tooth", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_an_tiger_orange_light.png" + }, + { + "id": "skin-33752684", + "name": "★ Butterfly Knife | Damascus Steel", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_90", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "411", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_damascus_90_light.png" + }, + { + "id": "skin-33752692", + "name": "★ Butterfly Knife | Marble Fade", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_marble_fade_light.png" + }, + { + "id": "skin-33752696", + "name": "★ Butterfly Knife | Rust Coat", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_aq_steel_knife_light.png" + }, + { + "id": "skin-33752700", + "name": "★ Butterfly Knife | Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33752712", + "name": "★ Butterfly Knife | Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase1_light.png" + }, + { + "id": "skin-33752720", + "name": "★ Butterfly Knife | Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase3_light.png" + }, + { + "id": "skin-33752724", + "name": "★ Butterfly Knife | Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase4_light.png" + }, + { + "id": "skin-33753312", + "name": "★ Butterfly Knife | Gamma Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33753316", + "name": "★ Butterfly Knife | Gamma Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33753320", + "name": "★ Butterfly Knife | Gamma Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33753324", + "name": "★ Butterfly Knife | Gamma Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33753328", + "name": "★ Butterfly Knife | Gamma Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33753356", + "name": "★ Butterfly Knife | Bright Water", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife_90", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "579", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_hy_ocean_knife_90_light.png" + }, + { + "id": "skin-33753364", + "name": "★ Butterfly Knife | Freehand", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up_90", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "581", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_marked_up_90_light.png" + }, + { + "id": "skin-33753508", + "name": "★ Butterfly Knife | Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized_b", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "617", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_blackpearl_marbleized_b_light.png" + }, + { + "id": "skin-33753512", + "name": "★ Butterfly Knife | Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2_b", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "618", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_doppler_phase2_b_light.png" + }, + { + "id": "skin-33753516", + "name": "★ Butterfly Knife | Doppler", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized_b", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "619", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_am_sapphire_marbleized_b_light.png" + }, + { + "id": "skin-33755460", + "name": "★ Butterfly Knife | Lore", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_butterfly_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1105", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_cu_butterfly_lore_light.png" + }, + { + "id": "skin-33755480", + "name": "★ Butterfly Knife | Black Laminate", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_butterfly_black_laminate", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1110", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_gs_butterfly_black_laminate_light.png" + }, + { + "id": "skin-33755500", + "name": "★ Butterfly Knife | Autotronic", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "weapon_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_butterfly_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1115", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_butterfly_gs_butterfly_autotronic_light.png" + }, + { + "id": "skin-33816596", + "name": "★ Shadow Daggers | Forest DDPAT", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_ddpat_light.png" + }, + { + "id": "skin-33816624", + "name": "★ Shadow Daggers | Crimson Web", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_webs_light.png" + }, + { + "id": "skin-33816728", + "name": "★ Shadow Daggers | Fade", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aa_fade_light.png" + }, + { + "id": "skin-33816736", + "name": "★ Shadow Daggers | Night", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_night", + "name": "Night" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "40", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_so_night_light.png" + }, + { + "id": "skin-33816744", + "name": "★ Shadow Daggers | Blue Steel", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_blued_light.png" + }, + { + "id": "skin-33816748", + "name": "★ Shadow Daggers | Stained", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_forced_light.png" + }, + { + "id": "skin-33816752", + "name": "★ Shadow Daggers | Case Hardened", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_oiled_light.png" + }, + { + "id": "skin-33816812", + "name": "★ Shadow Daggers | Slaughter", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_zebra_light.png" + }, + { + "id": "skin-33816864", + "name": "★ Shadow Daggers | Safari Mesh", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_sp_mesh_tan_light.png" + }, + { + "id": "skin-33816884", + "name": "★ Shadow Daggers | Boreal Forest", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_forest_boreal_light.png" + }, + { + "id": "skin-33816968", + "name": "★ Shadow Daggers | Ultraviolet", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_so_purple_light.png" + }, + { + "id": "skin-33817148", + "name": "★ Shadow Daggers | Urban Masked", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_sp_tape_urban_light.png" + }, + { + "id": "skin-33817276", + "name": "★ Shadow Daggers | Scorched", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_sp_dapple_light.png" + }, + { + "id": "skin-33818212", + "name": "★ Shadow Daggers | Tiger Tooth", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_an_tiger_orange_light.png" + }, + { + "id": "skin-33818220", + "name": "★ Shadow Daggers | Damascus Steel", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_90", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "411", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_damascus_90_light.png" + }, + { + "id": "skin-33818228", + "name": "★ Shadow Daggers | Marble Fade", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_marble_fade_light.png" + }, + { + "id": "skin-33818232", + "name": "★ Shadow Daggers | Rust Coat", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_aq_steel_knife_light.png" + }, + { + "id": "skin-33818236", + "name": "★ Shadow Daggers | Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_ruby_marbleized_light.png" + }, + { + "id": "skin-33818248", + "name": "★ Shadow Daggers | Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase1_light.png" + }, + { + "id": "skin-33818256", + "name": "★ Shadow Daggers | Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase3_light.png" + }, + { + "id": "skin-33818260", + "name": "★ Shadow Daggers | Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase4_light.png" + }, + { + "id": "skin-33818848", + "name": "★ Shadow Daggers | Gamma Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_emerald_marbleized", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "568", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Emerald", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_emerald_marbleized_light.png" + }, + { + "id": "skin-33818852", + "name": "★ Shadow Daggers | Gamma Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase1", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "569", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase1_light.png" + }, + { + "id": "skin-33818856", + "name": "★ Shadow Daggers | Gamma Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase2", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "570", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase2_light.png" + }, + { + "id": "skin-33818860", + "name": "★ Shadow Daggers | Gamma Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase3", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "571", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase3_light.png" + }, + { + "id": "skin-33818864", + "name": "★ Shadow Daggers | Gamma Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_gamma_doppler_phase4", + "name": "Gamma Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "572", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_gamma_doppler_phase4_light.png" + }, + { + "id": "skin-33818892", + "name": "★ Shadow Daggers | Bright Water", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ocean_knife_90", + "name": "Bright Water" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "579", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_hy_ocean_knife_90_light.png" + }, + { + "id": "skin-33818900", + "name": "★ Shadow Daggers | Freehand", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marked_up_90", + "name": "Freehand" + }, + "min_float": 0, + "max_float": 0.48, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "581", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_marked_up_90_light.png" + }, + { + "id": "skin-33819044", + "name": "★ Shadow Daggers | Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized_b", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "617", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_blackpearl_marbleized_b_light.png" + }, + { + "id": "skin-33819048", + "name": "★ Shadow Daggers | Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2_b", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "618", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_doppler_phase2_b_light.png" + }, + { + "id": "skin-33819052", + "name": "★ Shadow Daggers | Doppler", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized_b", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "619", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4351", + "name": "Spectrum Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_16.a2ec6a235e52612fa82e5858af3751b6e77f4ec2.png" + }, + { + "id": "crate-4403", + "name": "Spectrum 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_18.4255d9e03d5dad034bbe868622733deeb81434c1.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_am_sapphire_marbleized_b_light.png" + }, + { + "id": "skin-33821008", + "name": "★ Shadow Daggers | Lore", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "cu_push_lore", + "name": "Lore" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1108", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_cu_push_lore_light.png" + }, + { + "id": "skin-33821028", + "name": "★ Shadow Daggers | Black Laminate", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_push_black_laminate", + "name": "Black Laminate" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1113", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_gs_push_black_laminate_light.png" + }, + { + "id": "skin-33821048", + "name": "★ Shadow Daggers | Autotronic", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "weapon_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "gs_push_autotronic", + "name": "Autotronic" + }, + "min_float": 0, + "max_float": 0.85, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "1118", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4790", + "name": "Operation Riptide Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_29.9b830067732b4de110c01fb24cd067a3061b43a8.png" + }, + { + "id": "crate-4818", + "name": "Dreams & Nightmares Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_30.c471a3f74a254c80754f7deec19adaf0df266e23.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_push_gs_push_autotronic_light.png" + }, + { + "id": "skin-33882132", + "name": "★ Paracord Knife | Forest DDPAT", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_hy_ddpat_light.png" + }, + { + "id": "skin-33882160", + "name": "★ Paracord Knife | Crimson Web", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_hy_webs_light.png" + }, + { + "id": "skin-33882264", + "name": "★ Paracord Knife | Fade", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aa_fade_light.png" + }, + { + "id": "skin-33882280", + "name": "★ Paracord Knife | Blue Steel", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aq_blued_light.png" + }, + { + "id": "skin-33882284", + "name": "★ Paracord Knife | Stained", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aq_forced_light.png" + }, + { + "id": "skin-33882288", + "name": "★ Paracord Knife | Case Hardened", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_aq_oiled_light.png" + }, + { + "id": "skin-33882348", + "name": "★ Paracord Knife | Slaughter", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_am_zebra_light.png" + }, + { + "id": "skin-33882400", + "name": "★ Paracord Knife | Safari Mesh", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_mesh_tan_light.png" + }, + { + "id": "skin-33882420", + "name": "★ Paracord Knife | Boreal Forest", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_hy_forest_boreal_light.png" + }, + { + "id": "skin-33882684", + "name": "★ Paracord Knife | Urban Masked", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_tape_urban_light.png" + }, + { + "id": "skin-33882812", + "name": "★ Paracord Knife | Scorched", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_dapple_light.png" + }, + { + "id": "skin-33885052", + "name": "★ Paracord Knife | Night Stripe", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "weapon_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_cord_sp_nightstripe_light.png" + }, + { + "id": "skin-33947668", + "name": "★ Survival Knife | Forest DDPAT", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_hy_ddpat_light.png" + }, + { + "id": "skin-33947696", + "name": "★ Survival Knife | Crimson Web", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_hy_webs_light.png" + }, + { + "id": "skin-33947800", + "name": "★ Survival Knife | Fade", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aa_fade_light.png" + }, + { + "id": "skin-33947816", + "name": "★ Survival Knife | Blue Steel", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aq_blued_light.png" + }, + { + "id": "skin-33947820", + "name": "★ Survival Knife | Stained", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aq_forced_light.png" + }, + { + "id": "skin-33947824", + "name": "★ Survival Knife | Case Hardened", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_aq_oiled_light.png" + }, + { + "id": "skin-33947884", + "name": "★ Survival Knife | Slaughter", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_am_zebra_light.png" + }, + { + "id": "skin-33947936", + "name": "★ Survival Knife | Safari Mesh", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_mesh_tan_light.png" + }, + { + "id": "skin-33947956", + "name": "★ Survival Knife | Boreal Forest", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_hy_forest_boreal_light.png" + }, + { + "id": "skin-33948220", + "name": "★ Survival Knife | Urban Masked", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_tape_urban_light.png" + }, + { + "id": "skin-33948348", + "name": "★ Survival Knife | Scorched", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_dapple_light.png" + }, + { + "id": "skin-33950588", + "name": "★ Survival Knife | Night Stripe", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "weapon_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_canis_sp_nightstripe_light.png" + }, + { + "id": "skin-34013204", + "name": "★ Ursus Knife | Forest DDPAT", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_hy_ddpat_light.png" + }, + { + "id": "skin-34013232", + "name": "★ Ursus Knife | Crimson Web", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_hy_webs_light.png" + }, + { + "id": "skin-34013336", + "name": "★ Ursus Knife | Fade", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aa_fade_light.png" + }, + { + "id": "skin-34013352", + "name": "★ Ursus Knife | Blue Steel", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_blued_light.png" + }, + { + "id": "skin-34013356", + "name": "★ Ursus Knife | Stained", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_forced_light.png" + }, + { + "id": "skin-34013360", + "name": "★ Ursus Knife | Case Hardened", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_oiled_light.png" + }, + { + "id": "skin-34013420", + "name": "★ Ursus Knife | Slaughter", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_zebra_light.png" + }, + { + "id": "skin-34013472", + "name": "★ Ursus Knife | Safari Mesh", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_mesh_tan_light.png" + }, + { + "id": "skin-34013492", + "name": "★ Ursus Knife | Boreal Forest", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_hy_forest_boreal_light.png" + }, + { + "id": "skin-34013576", + "name": "★ Ursus Knife | Ultraviolet", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_so_purple_light.png" + }, + { + "id": "skin-34013756", + "name": "★ Ursus Knife | Urban Masked", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_tape_urban_light.png" + }, + { + "id": "skin-34013884", + "name": "★ Ursus Knife | Scorched", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_dapple_light.png" + }, + { + "id": "skin-34014820", + "name": "★ Ursus Knife | Tiger Tooth", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_an_tiger_orange_light.png" + }, + { + "id": "skin-34014836", + "name": "★ Ursus Knife | Marble Fade", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_marble_fade_light.png" + }, + { + "id": "skin-34014840", + "name": "★ Ursus Knife | Rust Coat", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_steel_knife_light.png" + }, + { + "id": "skin-34014844", + "name": "★ Ursus Knife | Doppler", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_ruby_marbleized_light.png" + }, + { + "id": "skin-34014848", + "name": "★ Ursus Knife | Doppler", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-34014852", + "name": "★ Ursus Knife | Doppler", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-34014856", + "name": "★ Ursus Knife | Doppler", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase1_light.png" + }, + { + "id": "skin-34014860", + "name": "★ Ursus Knife | Doppler", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase2_light.png" + }, + { + "id": "skin-34014864", + "name": "★ Ursus Knife | Doppler", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase3_light.png" + }, + { + "id": "skin-34014868", + "name": "★ Ursus Knife | Doppler", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_am_doppler_phase4_light.png" + }, + { + "id": "skin-34016124", + "name": "★ Ursus Knife | Night Stripe", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_sp_nightstripe_light.png" + }, + { + "id": "skin-34016612", + "name": "★ Ursus Knife | Damascus Steel", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "weapon_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_prisma", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "857", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_ursus_aq_damascus_prisma_light.png" + }, + { + "id": "skin-34078740", + "name": "★ Navaja Knife | Forest DDPAT", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_hy_ddpat_light.png" + }, + { + "id": "skin-34078768", + "name": "★ Navaja Knife | Crimson Web", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_hy_webs_light.png" + }, + { + "id": "skin-34078872", + "name": "★ Navaja Knife | Fade", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aa_fade_light.png" + }, + { + "id": "skin-34078888", + "name": "★ Navaja Knife | Blue Steel", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_blued_light.png" + }, + { + "id": "skin-34078892", + "name": "★ Navaja Knife | Stained", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_forced_light.png" + }, + { + "id": "skin-34078896", + "name": "★ Navaja Knife | Case Hardened", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_oiled_light.png" + }, + { + "id": "skin-34078956", + "name": "★ Navaja Knife | Slaughter", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_zebra_light.png" + }, + { + "id": "skin-34079008", + "name": "★ Navaja Knife | Safari Mesh", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_mesh_tan_light.png" + }, + { + "id": "skin-34079028", + "name": "★ Navaja Knife | Boreal Forest", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_hy_forest_boreal_light.png" + }, + { + "id": "skin-34079112", + "name": "★ Navaja Knife | Ultraviolet", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_so_purple_light.png" + }, + { + "id": "skin-34079292", + "name": "★ Navaja Knife | Urban Masked", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_tape_urban_light.png" + }, + { + "id": "skin-34079420", + "name": "★ Navaja Knife | Scorched", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_dapple_light.png" + }, + { + "id": "skin-34080356", + "name": "★ Navaja Knife | Tiger Tooth", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_an_tiger_orange_light.png" + }, + { + "id": "skin-34080372", + "name": "★ Navaja Knife | Marble Fade", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_marble_fade_light.png" + }, + { + "id": "skin-34080376", + "name": "★ Navaja Knife | Rust Coat", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_steel_knife_light.png" + }, + { + "id": "skin-34080380", + "name": "★ Navaja Knife | Doppler", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_ruby_marbleized_light.png" + }, + { + "id": "skin-34080384", + "name": "★ Navaja Knife | Doppler", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-34080388", + "name": "★ Navaja Knife | Doppler", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-34080392", + "name": "★ Navaja Knife | Doppler", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase1_light.png" + }, + { + "id": "skin-34080396", + "name": "★ Navaja Knife | Doppler", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase2_light.png" + }, + { + "id": "skin-34080400", + "name": "★ Navaja Knife | Doppler", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase3_light.png" + }, + { + "id": "skin-34080404", + "name": "★ Navaja Knife | Doppler", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_am_doppler_phase4_light.png" + }, + { + "id": "skin-34081660", + "name": "★ Navaja Knife | Night Stripe", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_sp_nightstripe_light.png" + }, + { + "id": "skin-34082148", + "name": "★ Navaja Knife | Damascus Steel", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "weapon_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_prisma", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "857", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_gypsy_jackknife_aq_damascus_prisma_light.png" + }, + { + "id": "skin-34144276", + "name": "★ Nomad Knife | Forest DDPAT", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_hy_ddpat_light.png" + }, + { + "id": "skin-34144304", + "name": "★ Nomad Knife | Crimson Web", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_hy_webs_light.png" + }, + { + "id": "skin-34144408", + "name": "★ Nomad Knife | Fade", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aa_fade_light.png" + }, + { + "id": "skin-34144424", + "name": "★ Nomad Knife | Blue Steel", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aq_blued_light.png" + }, + { + "id": "skin-34144428", + "name": "★ Nomad Knife | Stained", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aq_forced_light.png" + }, + { + "id": "skin-34144432", + "name": "★ Nomad Knife | Case Hardened", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_aq_oiled_light.png" + }, + { + "id": "skin-34144492", + "name": "★ Nomad Knife | Slaughter", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_am_zebra_light.png" + }, + { + "id": "skin-34144544", + "name": "★ Nomad Knife | Safari Mesh", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_mesh_tan_light.png" + }, + { + "id": "skin-34144564", + "name": "★ Nomad Knife | Boreal Forest", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_hy_forest_boreal_light.png" + }, + { + "id": "skin-34144828", + "name": "★ Nomad Knife | Urban Masked", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_tape_urban_light.png" + }, + { + "id": "skin-34144956", + "name": "★ Nomad Knife | Scorched", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_dapple_light.png" + }, + { + "id": "skin-34147196", + "name": "★ Nomad Knife | Night Stripe", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "weapon_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_outdoor_sp_nightstripe_light.png" + }, + { + "id": "skin-34209812", + "name": "★ Stiletto Knife | Forest DDPAT", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_hy_ddpat_light.png" + }, + { + "id": "skin-34209840", + "name": "★ Stiletto Knife | Crimson Web", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_hy_webs_light.png" + }, + { + "id": "skin-34209944", + "name": "★ Stiletto Knife | Fade", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aa_fade_light.png" + }, + { + "id": "skin-34209960", + "name": "★ Stiletto Knife | Blue Steel", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_blued_light.png" + }, + { + "id": "skin-34209964", + "name": "★ Stiletto Knife | Stained", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_forced_light.png" + }, + { + "id": "skin-34209968", + "name": "★ Stiletto Knife | Case Hardened", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_oiled_light.png" + }, + { + "id": "skin-34210028", + "name": "★ Stiletto Knife | Slaughter", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_zebra_light.png" + }, + { + "id": "skin-34210080", + "name": "★ Stiletto Knife | Safari Mesh", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_mesh_tan_light.png" + }, + { + "id": "skin-34210100", + "name": "★ Stiletto Knife | Boreal Forest", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_hy_forest_boreal_light.png" + }, + { + "id": "skin-34210184", + "name": "★ Stiletto Knife | Ultraviolet", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_so_purple_light.png" + }, + { + "id": "skin-34210364", + "name": "★ Stiletto Knife | Urban Masked", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_tape_urban_light.png" + }, + { + "id": "skin-34210492", + "name": "★ Stiletto Knife | Scorched", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_dapple_light.png" + }, + { + "id": "skin-34211428", + "name": "★ Stiletto Knife | Tiger Tooth", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_an_tiger_orange_light.png" + }, + { + "id": "skin-34211444", + "name": "★ Stiletto Knife | Marble Fade", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "413", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_marble_fade_light.png" + }, + { + "id": "skin-34211448", + "name": "★ Stiletto Knife | Rust Coat", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_steel_knife_light.png" + }, + { + "id": "skin-34211452", + "name": "★ Stiletto Knife | Doppler", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_ruby_marbleized_light.png" + }, + { + "id": "skin-34211456", + "name": "★ Stiletto Knife | Doppler", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-34211460", + "name": "★ Stiletto Knife | Doppler", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-34211464", + "name": "★ Stiletto Knife | Doppler", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "418", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase1_light.png" + }, + { + "id": "skin-34211468", + "name": "★ Stiletto Knife | Doppler", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "419", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase2_light.png" + }, + { + "id": "skin-34211472", + "name": "★ Stiletto Knife | Doppler", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "420", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase3_light.png" + }, + { + "id": "skin-34211476", + "name": "★ Stiletto Knife | Doppler", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "421", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_am_doppler_phase4_light.png" + }, + { + "id": "skin-34212732", + "name": "★ Stiletto Knife | Night Stripe", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_sp_nightstripe_light.png" + }, + { + "id": "skin-34213220", + "name": "★ Stiletto Knife | Damascus Steel", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "weapon_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_prisma", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "857", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_stiletto_aq_damascus_prisma_light.png" + }, + { + "id": "skin-34275348", + "name": "★ Talon Knife | Forest DDPAT", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_hy_ddpat_light.png" + }, + { + "id": "skin-34275376", + "name": "★ Talon Knife | Crimson Web", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_hy_webs_light.png" + }, + { + "id": "skin-34275480", + "name": "★ Talon Knife | Fade", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aa_fade_light.png" + }, + { + "id": "skin-34275496", + "name": "★ Talon Knife | Blue Steel", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_blued_light.png" + }, + { + "id": "skin-34275500", + "name": "★ Talon Knife | Stained", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_forced_light.png" + }, + { + "id": "skin-34275504", + "name": "★ Talon Knife | Case Hardened", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_oiled_light.png" + }, + { + "id": "skin-34275564", + "name": "★ Talon Knife | Slaughter", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_zebra_light.png" + }, + { + "id": "skin-34275616", + "name": "★ Talon Knife | Safari Mesh", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_mesh_tan_light.png" + }, + { + "id": "skin-34275636", + "name": "★ Talon Knife | Boreal Forest", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_hy_forest_boreal_light.png" + }, + { + "id": "skin-34275720", + "name": "★ Talon Knife | Ultraviolet", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "so_purple", + "name": "Ultraviolet" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "98", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_so_purple_light.png" + }, + { + "id": "skin-34275900", + "name": "★ Talon Knife | Urban Masked", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_tape_urban_light.png" + }, + { + "id": "skin-34276028", + "name": "★ Talon Knife | Scorched", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_dapple_light.png" + }, + { + "id": "skin-34276964", + "name": "★ Talon Knife | Tiger Tooth", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "an_tiger_orange", + "name": "Tiger Tooth" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "409", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_an_tiger_orange_light.png" + }, + { + "id": "skin-34276984", + "name": "★ Talon Knife | Rust Coat", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_steel_knife", + "name": "Rust Coat" + }, + "min_float": 0.4, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "414", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_steel_knife_light.png" + }, + { + "id": "skin-34276988", + "name": "★ Talon Knife | Doppler", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_ruby_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "415", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Ruby", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_ruby_marbleized_light.png" + }, + { + "id": "skin-34276992", + "name": "★ Talon Knife | Doppler", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_sapphire_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "416", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Sapphire", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_sapphire_marbleized_light.png" + }, + { + "id": "skin-34276996", + "name": "★ Talon Knife | Doppler", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_blackpearl_marbleized", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "417", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Black Pearl", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_blackpearl_marbleized_light.png" + }, + { + "id": "skin-34278268", + "name": "★ Talon Knife | Night Stripe", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_sp_nightstripe_light.png" + }, + { + "id": "skin-34278736", + "name": "★ Talon Knife | Doppler", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase1_widow", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "852", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 1", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase1_widow_light.png" + }, + { + "id": "skin-34278740", + "name": "★ Talon Knife | Doppler", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase2_widow", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "853", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 2", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase2_widow_light.png" + }, + { + "id": "skin-34278744", + "name": "★ Talon Knife | Doppler", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase3_widow", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "854", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 3", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase3_widow_light.png" + }, + { + "id": "skin-34278748", + "name": "★ Talon Knife | Doppler", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_doppler_phase4_widow", + "name": "Doppler" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "855", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "phase": "Phase 4", + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_doppler_phase4_widow_light.png" + }, + { + "id": "skin-34278752", + "name": "★ Talon Knife | Marble Fade", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_marble_fade_widow", + "name": "Marble Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "856", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_am_marble_fade_widow_light.png" + }, + { + "id": "skin-34278760", + "name": "★ Talon Knife | Damascus Steel", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "weapon_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_damascus_widow", + "name": "Damascus Steel" + }, + "min_float": 0, + "max_float": 0.5, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "858", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4598", + "name": "Prisma Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_22.f223dd42c8d4c3ecf5a03b27416cb523f493d8af.png" + }, + { + "id": "crate-4695", + "name": "Prisma 2 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_25.ef3b4b9eeb6cd8c29eb79e23ceb8205d40df4b55.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_widowmaker_aq_damascus_widow_light.png" + }, + { + "id": "skin-34406420", + "name": "★ Skeleton Knife | Forest DDPAT", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_ddpat", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "5", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_hy_ddpat_light.png" + }, + { + "id": "skin-34406448", + "name": "★ Skeleton Knife | Crimson Web", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_webs", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "12", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_hy_webs_light.png" + }, + { + "id": "skin-34406552", + "name": "★ Skeleton Knife | Fade", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aa_fade", + "name": "Fade" + }, + "min_float": 0, + "max_float": 0.08, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "38", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aa_fade_light.png" + }, + { + "id": "skin-34406568", + "name": "★ Skeleton Knife | Blue Steel", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_blued", + "name": "Blue Steel" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "42", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aq_blued_light.png" + }, + { + "id": "skin-34406572", + "name": "★ Skeleton Knife | Stained", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_forced", + "name": "Stained" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "43", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aq_forced_light.png" + }, + { + "id": "skin-34406576", + "name": "★ Skeleton Knife | Case Hardened", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "aq_oiled", + "name": "Case Hardened" + }, + "min_float": 0, + "max_float": 1, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "44", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_aq_oiled_light.png" + }, + { + "id": "skin-34406636", + "name": "★ Skeleton Knife | Slaughter", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "am_zebra", + "name": "Slaughter" + }, + "min_float": 0.01, + "max_float": 0.26, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "59", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_am_zebra_light.png" + }, + { + "id": "skin-34406688", + "name": "★ Skeleton Knife | Safari Mesh", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_mesh_tan", + "name": "Safari Mesh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "72", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_mesh_tan_light.png" + }, + { + "id": "skin-34406708", + "name": "★ Skeleton Knife | Boreal Forest", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "hy_forest_boreal", + "name": "Boreal Forest" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "77", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_hy_forest_boreal_light.png" + }, + { + "id": "skin-34406972", + "name": "★ Skeleton Knife | Urban Masked", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_tape_urban", + "name": "Urban Masked" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "143", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_tape_urban_light.png" + }, + { + "id": "skin-34407100", + "name": "★ Skeleton Knife | Scorched", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_dapple", + "name": "Scorched" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "175", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_dapple_light.png" + }, + { + "id": "skin-34409340", + "name": "★ Skeleton Knife | Night Stripe", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "weapon_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": { + "id": "sp_nightstripe", + "name": "Night Stripe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "souvenir": false, + "paint_index": "735", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/weapon_knife_skeleton_sp_nightstripe_light.png" + }, + { + "id": "skin-309697940", + "name": "★ Broken Fang Gloves | Jade", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Broken Fang logo.", + "weapon": { + "id": "studded_brokenfang_gloves", + "name": "Broken Fang Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "operation10_metalic_green", + "name": "Jade" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10085", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_brokenfang_gloves_operation10_metalic_green_light.png" + }, + { + "id": "skin-309697944", + "name": "★ Broken Fang Gloves | Yellow-banded", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Broken Fang logo.", + "weapon": { + "id": "studded_brokenfang_gloves", + "name": "Broken Fang Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "operation10_poison_frog_black_yellow", + "name": "Yellow-banded" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10086", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_brokenfang_gloves_operation10_poison_frog_black_yellow_light.png" + }, + { + "id": "skin-309697948", + "name": "★ Broken Fang Gloves | Needle Point", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Broken Fang logo.", + "weapon": { + "id": "studded_brokenfang_gloves", + "name": "Broken Fang Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "operation10_floral", + "name": "Needle Point" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10087", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_brokenfang_gloves_operation10_floral_light.png" + }, + { + "id": "skin-309697952", + "name": "★ Broken Fang Gloves | Unhinged", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Broken Fang logo.", + "weapon": { + "id": "studded_brokenfang_gloves", + "name": "Broken Fang Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "operation10_snakeskin_black", + "name": "Unhinged" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10088", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_brokenfang_gloves_operation10_snakeskin_black_light.png" + }, + { + "id": "skin-329489496", + "name": "★ Bloodhound Gloves | Charred", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Bloodhound logo.", + "weapon": { + "id": "studded_bloodhound_gloves", + "name": "Bloodhound Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_black_silver", + "name": "Charred" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10006", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_bloodhound_gloves_bloodhound_black_silver_light.png" + }, + { + "id": "skin-329489500", + "name": "★ Bloodhound Gloves | Snakebite", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Bloodhound logo.", + "weapon": { + "id": "studded_bloodhound_gloves", + "name": "Bloodhound Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_snakeskin_brass", + "name": "Snakebite" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10007", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_bloodhound_gloves_bloodhound_snakeskin_brass_light.png" + }, + { + "id": "skin-329489504", + "name": "★ Bloodhound Gloves | Bronzed", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Bloodhound logo.", + "weapon": { + "id": "studded_bloodhound_gloves", + "name": "Bloodhound Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_metallic", + "name": "Bronzed" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10008", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_bloodhound_gloves_bloodhound_metallic_light.png" + }, + { + "id": "skin-329489628", + "name": "★ Bloodhound Gloves | Guerrilla", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Bloodhound logo.", + "weapon": { + "id": "studded_bloodhound_gloves", + "name": "Bloodhound Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_guerrilla", + "name": "Guerrilla" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10039", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_bloodhound_gloves_bloodhound_guerrilla_light.png" + }, + { + "id": "skin-329686152", + "name": "★ Sport Gloves | Superconductor", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_light_blue", + "name": "Superconductor" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10018", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_light_blue_light.png" + }, + { + "id": "skin-329686156", + "name": "★ Sport Gloves | Arid", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_military", + "name": "Arid" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10019", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_military_light.png" + }, + { + "id": "skin-329686228", + "name": "★ Sport Gloves | Pandora's Box", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_purple", + "name": "Pandora's Box" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10037", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_purple_light.png" + }, + { + "id": "skin-329686232", + "name": "★ Sport Gloves | Hedge Maze", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_green", + "name": "Hedge Maze" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10038", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_green_light.png" + }, + { + "id": "skin-329686260", + "name": "★ Sport Gloves | Amphibious", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_poison_frog_blue_white", + "name": "Amphibious" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10045", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_poison_frog_blue_white_light.png" + }, + { + "id": "skin-329686264", + "name": "★ Sport Gloves | Bronze Morph", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_poison_frog_red_green", + "name": "Bronze Morph" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10046", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_poison_frog_red_green_light.png" + }, + { + "id": "skin-329686268", + "name": "★ Sport Gloves | Omega", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_black_webbing_yellow", + "name": "Omega" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10047", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_black_webbing_yellow_light.png" + }, + { + "id": "skin-329686272", + "name": "★ Sport Gloves | Vice", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_blue_pink", + "name": "Vice" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10048", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_blue_pink_light.png" + }, + { + "id": "skin-329686372", + "name": "★ Sport Gloves | Slingshot", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_slingshot", + "name": "Slingshot" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10073", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_slingshot_light.png" + }, + { + "id": "skin-329686376", + "name": "★ Sport Gloves | Big Game", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_hunter", + "name": "Big Game" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10074", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_hunter_light.png" + }, + { + "id": "skin-329686380", + "name": "★ Sport Gloves | Scarlet Shamagh", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_houndstooth_red", + "name": "Scarlet Shamagh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10075", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_houndstooth_red_light.png" + }, + { + "id": "skin-329686384", + "name": "★ Sport Gloves | Nocts", + "description": "Synthetic fabrics make these athletic gloves durable and eye-catching.", + "weapon": { + "id": "sporty_gloves", + "name": "Sport Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "sporty_jaguar", + "name": "Nocts" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10076", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/sporty_gloves_sporty_jaguar_light.png" + }, + { + "id": "skin-329751668", + "name": "★ Driver Gloves | Lunar Weave", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_black", + "name": "Lunar Weave" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10013", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_black_light.png" + }, + { + "id": "skin-329751676", + "name": "★ Driver Gloves | Convoy", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_military", + "name": "Convoy" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10015", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_military_light.png" + }, + { + "id": "skin-329751680", + "name": "★ Driver Gloves | Crimson Weave", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_red", + "name": "Crimson Weave" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10016", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_red_light.png" + }, + { + "id": "skin-329751776", + "name": "★ Driver Gloves | Diamondback", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_snakeskin_yellow", + "name": "Diamondback" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10040", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_snakeskin_yellow_light.png" + }, + { + "id": "skin-329751780", + "name": "★ Driver Gloves | King Snake", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_snakeskin_white", + "name": "King Snake" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10041", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_snakeskin_white_light.png" + }, + { + "id": "skin-329751784", + "name": "★ Driver Gloves | Imperial Plaid", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_plaid_purple", + "name": "Imperial Plaid" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10042", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_plaid_purple_light.png" + }, + { + "id": "skin-329751788", + "name": "★ Driver Gloves | Overtake", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_stitched_black_orange", + "name": "Overtake" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10043", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_stitched_black_orange_light.png" + }, + { + "id": "skin-329751792", + "name": "★ Driver Gloves | Racing Green", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_stitched_green_grey", + "name": "Racing Green" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10044", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_stitched_green_grey_light.png" + }, + { + "id": "skin-329751892", + "name": "★ Driver Gloves | Rezan the Red", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_rezan", + "name": "Rezan the Red" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10069", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_rezan_light.png" + }, + { + "id": "skin-329751896", + "name": "★ Driver Gloves | Snow Leopard", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_jaguar_white", + "name": "Snow Leopard" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10070", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_jaguar_white_light.png" + }, + { + "id": "skin-329751900", + "name": "★ Driver Gloves | Queen Jaguar", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_jaguar_yellow", + "name": "Queen Jaguar" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10071", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_jaguar_yellow_light.png" + }, + { + "id": "skin-329751904", + "name": "★ Driver Gloves | Black Tie", + "description": "These driving gloves offer protection from the elements while still maintaining tactile sensation.", + "weapon": { + "id": "slick_gloves", + "name": "Driver Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "slick_stitched_black_white", + "name": "Black Tie" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10072", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/slick_gloves_slick_stitched_black_white_light.png" + }, + { + "id": "skin-329817188", + "name": "★ Hand Wraps | Leather", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery", + "name": "Leather" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10009", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_light.png" + }, + { + "id": "skin-329817192", + "name": "★ Hand Wraps | Spruce DDPAT", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_camo_grey", + "name": "Spruce DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10010", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_camo_grey_light.png" + }, + { + "id": "skin-329817236", + "name": "★ Hand Wraps | Slaughter", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_red_slaughter", + "name": "Slaughter" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10021", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_red_slaughter_light.png" + }, + { + "id": "skin-329817296", + "name": "★ Hand Wraps | Badlands", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_fabric_orange_camo", + "name": "Badlands" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10036", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_fabric_orange_camo_light.png" + }, + { + "id": "skin-329817364", + "name": "★ Hand Wraps | Cobalt Skulls", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery_fabric_blue_skulls", + "name": "Cobalt Skulls" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10053", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_fabric_blue_skulls_light.png" + }, + { + "id": "skin-329817368", + "name": "★ Hand Wraps | Overprint", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery_fabric_geometric_blue", + "name": "Overprint" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10054", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_fabric_geometric_blue_light.png" + }, + { + "id": "skin-329817372", + "name": "★ Hand Wraps | Duct Tape", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery_ducttape", + "name": "Duct Tape" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10055", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_ducttape_light.png" + }, + { + "id": "skin-329817376", + "name": "★ Hand Wraps | Arboreal", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery_fabric_green_camo", + "name": "Arboreal" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10056", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_fabric_green_camo_light.png" + }, + { + "id": "skin-329817476", + "name": "★ Hand Wraps | Desert Shamagh", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_fabric_houndstooth_orange", + "name": "Desert Shamagh" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10081", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_fabric_houndstooth_orange_light.png" + }, + { + "id": "skin-329817480", + "name": "★ Hand Wraps | Giraffe", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery_fabric_giraffe", + "name": "Giraffe" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10082", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_fabric_giraffe_light.png" + }, + { + "id": "skin-329817484", + "name": "★ Hand Wraps | Constrictor", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery_snakeskin_orange", + "name": "Constrictor" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10083", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_snakeskin_orange_light.png" + }, + { + "id": "skin-329817488", + "name": "★ Hand Wraps | CAUTION!", + "description": "Preferred by hand-to-hand fighters, these wraps protect the knuckles and stabilize the wrist when punching.", + "weapon": { + "id": "leather_handwraps", + "name": "Hand Wraps" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "handwrap_leathery_caution", + "name": "CAUTION!" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10084", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/leather_handwraps_handwrap_leathery_caution_light.png" + }, + { + "id": "skin-329882784", + "name": "★ Moto Gloves | Eclipse", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_basic_black", + "name": "Eclipse" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10024", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_basic_black_light.png" + }, + { + "id": "skin-329882792", + "name": "★ Moto Gloves | Spearmint", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_mint_triangle", + "name": "Spearmint" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10026", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_mint_triangle_light.png" + }, + { + "id": "skin-329882796", + "name": "★ Moto Gloves | Boom!", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_mono_boom", + "name": "Boom!" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10027", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_mono_boom_light.png" + }, + { + "id": "skin-329882800", + "name": "★ Moto Gloves | Cool Mint", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_triangle_blue", + "name": "Cool Mint" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10028", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_triangle_blue_light.png" + }, + { + "id": "skin-329882884", + "name": "★ Moto Gloves | POW!", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_choco_boom", + "name": "POW!" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10049", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_choco_boom_light.png" + }, + { + "id": "skin-329882888", + "name": "★ Moto Gloves | Turtle", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_basic_green_orange", + "name": "Turtle" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10050", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_basic_green_orange_light.png" + }, + { + "id": "skin-329882892", + "name": "★ Moto Gloves | Transport", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_yellow_camo", + "name": "Transport" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10051", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_yellow_camo_light.png" + }, + { + "id": "skin-329882896", + "name": "★ Moto Gloves | Polygon", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_trigrid_blue", + "name": "Polygon" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10052", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_trigrid_blue_light.png" + }, + { + "id": "skin-329882996", + "name": "★ Moto Gloves | Finish Line", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_checker_flag_blue_green", + "name": "Finish Line" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10077", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_checker_flag_blue_green_light.png" + }, + { + "id": "skin-329883000", + "name": "★ Moto Gloves | Smoke Out", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_smoke", + "name": "Smoke Out" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10078", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_smoke_light.png" + }, + { + "id": "skin-329883004", + "name": "★ Moto Gloves | Blood Pressure", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_carbonfiber_red", + "name": "Blood Pressure" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10079", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_carbonfiber_red_light.png" + }, + { + "id": "skin-329883008", + "name": "★ Moto Gloves | 3rd Commando Company", + "description": "These bulky hard knuckled gloves can protect the wearers hands from road rash at 60 mph.", + "weapon": { + "id": "motorcycle_gloves", + "name": "Moto Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "motorcycle_commando_ksk", + "name": "3rd Commando Company" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10080", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/motorcycle_gloves_motorcycle_commando_ksk_light.png" + }, + { + "id": "skin-329948344", + "name": "★ Specialist Gloves | Forest DDPAT", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_ddpat_green_camo", + "name": "Forest DDPAT" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10030", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_ddpat_green_camo_light.png" + }, + { + "id": "skin-329948356", + "name": "★ Specialist Gloves | Crimson Kimono", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_kimono_diamonds_red", + "name": "Crimson Kimono" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10033", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_kimono_diamonds_red_light.png" + }, + { + "id": "skin-329948360", + "name": "★ Specialist Gloves | Emerald Web", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_emerald_web", + "name": "Emerald Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10034", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_emerald_web_light.png" + }, + { + "id": "skin-329948364", + "name": "★ Specialist Gloves | Foundation", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_orange_white", + "name": "Foundation" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10035", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4288", + "name": "Glove Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_15.7dfa18f8f7ce3bc4e55aac0c566fe068e741bddf.png" + }, + { + "id": "crate-4352", + "name": "Operation Hydra Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_17.8d4528eca229d65d0c19929ae2078aab38df1369.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_orange_white_light.png" + }, + { + "id": "skin-329948468", + "name": "★ Specialist Gloves | Crimson Web", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_webs_red", + "name": "Crimson Web" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10061", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_webs_red_light.png" + }, + { + "id": "skin-329948472", + "name": "★ Specialist Gloves | Buckshot", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_forest_brown", + "name": "Buckshot" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10062", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_forest_brown_light.png" + }, + { + "id": "skin-329948476", + "name": "★ Specialist Gloves | Fade", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_fade", + "name": "Fade" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10063", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_fade_light.png" + }, + { + "id": "skin-329948480", + "name": "★ Specialist Gloves | Mogul", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_winterhex", + "name": "Mogul" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10064", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_winterhex_light.png" + }, + { + "id": "skin-329948484", + "name": "★ Specialist Gloves | Marble Fade", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_marble_fade", + "name": "Marble Fade" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10065", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_marble_fade_light.png" + }, + { + "id": "skin-329948488", + "name": "★ Specialist Gloves | Lt. Commander", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_ricksaw_camo", + "name": "Lt. Commander" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10066", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_ricksaw_camo_light.png" + }, + { + "id": "skin-329948492", + "name": "★ Specialist Gloves | Tiger Strike", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_tiger_orange", + "name": "Tiger Strike" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10067", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_tiger_orange_light.png" + }, + { + "id": "skin-329948496", + "name": "★ Specialist Gloves | Field Agent", + "description": "Durable, breathable, and stylish; these gloves are designed to take (and give) a beating.", + "weapon": { + "id": "specialist_gloves", + "name": "Specialist Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "specialist_fbi", + "name": "Field Agent" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10068", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4717", + "name": "Operation Broken Fang Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_27.410809461956f26e23d1268152af7bdea7875fb0.png" + }, + { + "id": "crate-4747", + "name": "Snakebite Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_28.1f6e656d8fc297c9f2b65f2c05b8552d1cc63082.png" + }, + { + "id": "crate-4846", + "name": "Recoil Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_31.440b43f4ad3fcfe344ce63b5d8cf59cd8034ba1a.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/specialist_gloves_specialist_fbi_light.png" + }, + { + "id": "skin-330013988", + "name": "★ Hydra Gloves | Emerald", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Hydra logo.", + "weapon": { + "id": "studded_hydra_gloves", + "name": "Hydra Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_hydra_black_green", + "name": "Emerald" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10057", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_hydra_gloves_bloodhound_hydra_black_green_light.png" + }, + { + "id": "skin-330013992", + "name": "★ Hydra Gloves | Mangrove", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Hydra logo.", + "weapon": { + "id": "studded_hydra_gloves", + "name": "Hydra Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_hydra_green_leather_mesh_brass", + "name": "Mangrove" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10058", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_hydra_gloves_bloodhound_hydra_green_leather_mesh_brass_light.png" + }, + { + "id": "skin-330013996", + "name": "★ Hydra Gloves | Rattler", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Hydra logo.", + "weapon": { + "id": "studded_hydra_gloves", + "name": "Hydra Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_hydra_snakeskin_brass", + "name": "Rattler" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10059", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_hydra_gloves_bloodhound_hydra_snakeskin_brass_light.png" + }, + { + "id": "skin-330014000", + "name": "★ Hydra Gloves | Case Hardened", + "description": "These fingerless gloves have been decorated with metal studs and the Operation Hydra logo.", + "weapon": { + "id": "studded_hydra_gloves", + "name": "Hydra Gloves" + }, + "category": { + "id": "sfui_invpanel_filter_gloves", + "name": "Gloves" + }, + "pattern": { + "id": "bloodhound_hydra_case_hardened", + "name": "Case Hardened" + }, + "min_float": 0.06, + "max_float": 0.8, + "rarity": { + "id": "rarity_ancient", + "name": "Extraordinary" + }, + "stattrak": false, + "souvenir": false, + "paint_index": "10060", + "wears": [ + { + "id": "SFUI_InvTooltip_Wear_Amount_0", + "name": "Factory New" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_1", + "name": "Minimal Wear" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_2", + "name": "Field-Tested" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_3", + "name": "Well-Worn" + }, + { + "id": "SFUI_InvTooltip_Wear_Amount_4", + "name": "Battle-Scarred" + } + ], + "collections": [], + "crates": [ + { + "id": "crate-4471", + "name": "Clutch Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_19.982c3a44362ee65b192b359c12d3d3af9ecb56b2.png" + }, + { + "id": "crate-4880", + "name": "Revolution Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_32.2d4bcc3d6832d2b4d1d11a273a4ff4bf55dc63a1.png" + } + ], + "image": "https://raw.githubusercontent.com/ByMykel/CSGO-API/4fdf048a2b6c21494df4fe915f5fdea5accc6a61/public/images/econ/default_generated/studded_hydra_gloves_bloodhound_hydra_case_hardened_light.png" + }, + { + "id": "skin-vanilla-weapon_bayonet", + "name": "★ Bayonet", + "description": "Relatively unchanged in its design since World War II, the bayonet still retains a place in modern military strategy. Bayonet charges have continued to be effective as recently as the second Gulf War and the war in Afghanistan.", + "weapon": { + "id": "sfui_wpnhud_bayonet", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_bayonet.515de291204d6d896724d9fbb6856fcc6054a787.png" + }, + { + "id": "skin-vanilla-weapon_knife_css", + "name": "★ Classic Knife", + "description": "A classic of the Counter-Strike series, the edge of this knife is press-fit Stellite perfectly held in place due to its precise fit with the titanium on the blade's cheek and spine. The handle is fossilized mastodon ivory held in a carbon fibre pocket.", + "weapon": { + "id": "sfui_wpnhud_knife_css", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4669", + "name": "CS20 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_24.2b3bab86cb5b63a196342af58c0e4c82986ab54d.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_css.0b33071c28c02e6f19e363dc9a838566c6557389.png" + }, + { + "id": "skin-vanilla-weapon_knife_flip", + "name": "★ Flip Knife", + "description": "Flip knives sport a Persian-style back-swept blade with an acute point. While the point itself may be fragile, the overall design of the flip knife's design is surprisingly durable.", + "weapon": { + "id": "sfui_wpnhud_knife_flip", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_flip.ebfc00735792b1e2947b30a321a07215dae8ceed.png" + }, + { + "id": "skin-vanilla-weapon_knife_gut", + "name": "★ Gut Knife", + "description": "The most notable feature of a gut knife is the gut hook on the spine of the blade. Originally popularized as an aid for field dressing game, the gut hook is also effective at cutting through fibrous materials like rope, webbing, or safety belts with ease.", + "weapon": { + "id": "sfui_wpnhud_knife_gut", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_gut.1d53007384970e8eaf28448312777683fd633a79.png" + }, + { + "id": "skin-vanilla-weapon_knife_karambit", + "name": "★ Karambit", + "description": "With its curved blade mimicking a tiger's claw, the karambit was developed as part of the southeast Asian martial discipline of silat. The knife is typically used with a reverse grip, with the finger ring on the index finger.", + "weapon": { + "id": "sfui_wpnhud_knife_karambit", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_karambit.8b491b581a4b9c7b5298071425f2b29a39a2a12f.png" + }, + { + "id": "skin-vanilla-weapon_knife_m9_bayonet", + "name": "★ M9 Bayonet", + "description": "This is the M-9 bayonet. Originally intended to be mounted on a rifle, it is also well suited to close-quarters combat.", + "weapon": { + "id": "sfui_wpnhud_knife_m9_bayonet", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4001", + "name": "CS:GO Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_1.23c783d005b446a1004c97057cfb5ac2d8dae186.png" + }, + { + "id": "crate-4002", + "name": "eSports 2013 Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013.c4fd3c71742688383914a7ef7127652764f4567c.png" + }, + { + "id": "crate-4003", + "name": "Operation Bravo Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_operation_ii.5e5104a6291741c5693a1e78bd6ecc9560b51f0a.png" + }, + { + "id": "crate-4004", + "name": "CS:GO Weapon Case 2", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_2.912031176f2320d2d39f449ab3e27c41f5ec7faa.png" + }, + { + "id": "crate-4005", + "name": "eSports 2013 Winter Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2013_14.a83d1976bb20db8b4a64e7acad93aac87127ddd5.png" + }, + { + "id": "crate-4009", + "name": "Winter Offensive Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_1.b176b8ca60249d0a2e7c6d72ec7d2d1a9632bd06.png" + }, + { + "id": "crate-4010", + "name": "CS:GO Weapon Case 3", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_valve_3.b49dc22a06991946e849c7b364b7d5876534ef61.png" + }, + { + "id": "crate-4011", + "name": "Operation Phoenix Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_2.49174abddcccb6519b83d27d0cff476e1c44cc57.png" + }, + { + "id": "crate-4019", + "name": "eSports 2014 Summer Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_esports_2014_summer.e579e3f7ca004fd9b51aa0f597590c936bb9f67c.png" + }, + { + "id": "crate-4029", + "name": "Operation Vanguard Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_5.49a38d2d3afff918ae3b5c5bc2ba2f99b02888f3.png" + }, + { + "id": "crate-4186", + "name": "Revolver Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_10.a7a2e0b4f6ee7a99b25c531b2d3bdef5147200f7.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_m9_bayonet.1a55109e0c88792e5d56ea04dc1f676e44f9dec2.png" + }, + { + "id": "skin-vanilla-weapon_knife_tactical", + "name": "★ Huntsman Knife", + "description": "A knife designed for modern tactical uses, the blade is well suited for a range of both combat and utilitarian needs. The unique Tanto point allows for maximum penetration through even the toughest of surfaces.", + "weapon": { + "id": "sfui_wpnhud_knife_tactical", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4017", + "name": "Huntsman Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_3.ce832a92f9fc329dc87d7a802374b918b07cdb84.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_tactical.7621bbad70410deb629d60ed98ef248dac525356.png" + }, + { + "id": "skin-vanilla-weapon_knife_falchion", + "name": "★ Falchion Knife", + "description": "A modern homage to a falchion sword, this clip point blade has a curved edge.", + "weapon": { + "id": "sfui_wpnhud_knife_falchion", + "name": null + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4091", + "name": "Falchion Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_8.3cd07b46c7bcb7577453816c5d2f8afdbee98234.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_falchion.adcc43a018fd4fe315dbdbc7960cfc52c5d63e3e.png" + }, + { + "id": "skin-vanilla-weapon_knife_survival_bowie", + "name": "★ Bowie Knife", + "description": "This full-tang sawback Bowie knife is designed for heavy use in brutal survival situations.", + "weapon": { + "id": "sfui_wpnhud_knife_survival_bowie", + "name": "Bowie Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4187", + "name": "Operation Wildfire Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_11.4839d78c3416c2036da2ed42111df77177828399.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_survival_bowie.01addb54d400815308b1d312290594a3177dd55f.png" + }, + { + "id": "skin-vanilla-weapon_knife_butterfly", + "name": "★ Butterfly Knife", + "description": "This is a custom-designed balisong, commonly known as a butterfly knife. The defining characteristic of this weapon is the fan-like opening of a freely pivoting blade, allowing rapid deployment or concealment. As a result, butterfly knives are outlawed in many countries.", + "weapon": { + "id": "sfui_wpnhud_knife_butterfly", + "name": "Butterfly Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4018", + "name": "Operation Breakout Weapon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_4.f0d23848527b7be0f1fc9556b1f3ecfb1193ee40.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_butterfly.794147e84a4e9426202d45145910cbb007797ce5.png" + }, + { + "id": "skin-vanilla-weapon_knife_push", + "name": "★ Shadow Daggers", + "description": "Designed for efficient brutality, using a push dagger is as simple as throwing a punch or two.", + "weapon": { + "id": "sfui_wpnhud_knife_push", + "name": "Shadow Daggers" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4138", + "name": "Shadow Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_9.e8303075e1a0969497a4502140ea47ecc65b4c50.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_push.13f409f23e653107c90711e5ab258b52b187ff6a.png" + }, + { + "id": "skin-vanilla-weapon_knife_cord", + "name": "★ Paracord Knife", + "description": "This fixed-blade survival knife is designed to withstand being used as both a weapon and a tool, such as for setting traps, hunting animals or cutting foliage. The handle is wrapped in a length of multi-purpose paracord.", + "weapon": { + "id": "sfui_wpnhud_knife_cord", + "name": "Paracord Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_cord.073b5fa991a256ec2264b1c1c581401631eb51cb.png" + }, + { + "id": "skin-vanilla-weapon_knife_canis", + "name": "★ Survival Knife", + "description": "This multi-purpose tactical knife features a serrated edge for ripping through coarse material like bone or fiber, plus a sharp gutting hook. The composite material handle is bolted to the blade with hex nuts.", + "weapon": { + "id": "sfui_wpnhud_knife_canis", + "name": "Survival Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_canis.ae03aed81864dc2ee1e1118bb973418f910098ac.png" + }, + { + "id": "skin-vanilla-weapon_knife_ursus", + "name": "★ Ursus Knife", + "description": "This tanto-style survival knife features a faceted blade and full tang, complete with impact pommel. No fuss, no moving parts - just a reliable blade that's ready to work.", + "weapon": { + "id": "sfui_wpnhud_knife_ursus", + "name": "Ursus Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_ursus.34ecda985c12503df5b88e9bda1826f61cc9e80a.png" + }, + { + "id": "skin-vanilla-weapon_knife_gypsy_jackknife", + "name": "★ Navaja Knife", + "description": "This marble-enamel-handled flip knife conceals a small but viciously tapered blade.", + "weapon": { + "id": "sfui_wpnhud_knife_gypsy_jackknife", + "name": "Navaja Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_gypsy_jackknife.1a7e57791fa9383cce67d5915ffc442c7de2694a.png" + }, + { + "id": "skin-vanilla-weapon_knife_outdoor", + "name": "★ Nomad Knife", + "description": "This ergonomic tactical hunting lock-blade knife features composite handle inserts and a broad, sturdy blade, useful for cutting and prying apart material.", + "weapon": { + "id": "sfui_wpnhud_knife_outdoor", + "name": "Nomad Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_outdoor.fdb3ce5ceef1584781759ef5a7bd6f819bf12e9b.png" + }, + { + "id": "skin-vanilla-weapon_knife_stiletto", + "name": "★ Stiletto Knife", + "description": "Historically a focal point of contention and even regulation, this Italian-style stiletto switchblade knife features a spring-loaded blade that can be deployed almost instantly with the push of a release catch.", + "weapon": { + "id": "sfui_wpnhud_knife_stiletto", + "name": "Stiletto Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_stiletto.1aefe4ca0e433fc8c3f924ba362283e0666b5f8d.png" + }, + { + "id": "skin-vanilla-weapon_knife_widowmaker", + "name": "★ Talon Knife", + "description": "This ivory-handled karambit features brass rivets and saw-tooth ridges, so it cuts on the way in, and tears on the way out.", + "weapon": { + "id": "sfui_wpnhud_knife_widowmaker", + "name": "Talon Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4482", + "name": "Horizon Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_20.efee8198ed2e0b6ab4b5bb1e99be04a1308b43fe.png" + }, + { + "id": "crate-4548", + "name": "Danger Zone Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_21.0c6cec0c247809e291dea2fe514d46ea21607201.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_widowmaker.a0842ad04cda9292483b8896d1dcdaffac9c2e5e.png" + }, + { + "id": "skin-vanilla-weapon_knife_skeleton", + "name": "★ Skeleton Knife", + "description": "This skeletonized-tang knife has been taped at the handle for improved grip. The hole allows a finger to be threaded through for stability and safety.", + "weapon": { + "id": "sfui_wpnhud_knife_skeleton", + "name": "Skeleton Knife" + }, + "category": { + "id": "sfui_invpanel_filter_melee", + "name": "Knives" + }, + "pattern": null, + "min_float": null, + "max_float": null, + "rarity": { + "id": "rarity_ancient_weapon", + "name": "Covert" + }, + "stattrak": true, + "paint_index": null, + "crates": [ + { + "id": "crate-4620", + "name": "Shattered Web Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_23.3248a20393f5e73c0ee99448b994e89381565353.png" + }, + { + "id": "crate-4698", + "name": "Fracture Case", + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapon_cases/crate_community_26.b25098af5a4285004052786e261be43dec5b89cf.png" + } + ], + "image": "https://steamcdn-a.akamaihd.net/apps/730/icons/econ/weapons/base_weapons/weapon_knife_skeleton.1fc401a844008bcaa89f8381cbe7b550a051609d.png" + } +] \ No newline at end of file diff --git a/website/style.css b/website/style.css new file mode 100644 index 00000000..af64ad2f --- /dev/null +++ b/website/style.css @@ -0,0 +1,16 @@ +.bg-primary { + padding: 15px; +} + +.card-title item-name{ + //text-align:center; + font-weight:bold; +} + +.skin-image { + margin: 0 auto; + display:block; + text-align:center; + width:50%; + //border-bottom: solid 1px #eee; +}