Ready for Take off

Make foreign stock available on travel page

Από την 09/06/2020. Δείτε την τελευταία έκδοση.

// ==UserScript==
// @name         Ready for Take off
// @namespace    el_professor_takeoff
// @version      0.0.2
// @description  Make foreign stock available on travel page
// @author       El_Profesor
// @match        https://www.torn.com/*
// @grant        GM_addStyle
// @grant        GM_xmlhttpRequest
// @connect      arsonwarehouse.com
// ==/UserScript==

(function () {
    'use strict';

    function sortFunction(a, b) {
        if (a['price'] === b['price']) {
            return 0;
        }
        else {
            return (a['price'] < b['price']) ? -1 : 1;
        }
    }

    const formatter = new Intl.NumberFormat('en-US', {style: 'currency',currency: 'USD', minimumFractionDigits: 0});

    GM_addStyle('#takeoffWrapper { background: #fff; width: 100%; float: left; margin-top: 25px; border-radius: 5px;}');
    GM_addStyle('#takeoff{ padding: 10px;}');
    GM_addStyle('#takeoff h3{ padding: 10px; margin-bottom: 0;}');
    GM_addStyle('#takeoff small{ display: block; text-align: right; margin-bottom:5px; font-style: italic;}');
    GM_addStyle('.travel-table  { padding: 10px; }');
    GM_addStyle('.travel-table table { width: 100%; }');
    GM_addStyle('.travel-table tr { border-top: 1px solid #000;}');
    GM_addStyle('.travel-table tr:first-child { border-top: 0;}');
    GM_addStyle('.travel-table th,  .travel-table td { width: 33%; padding: 5px 0 !important;}');
    GM_addStyle('.travel-table th { font-weight: 900;  }');
    GM_addStyle('.travel-table td { font-weight: 300; }');
    GM_addStyle('.travel-table .to-right {text-align: right; }');
    GM_addStyle('.travel-table .to-left {text-align: left; }');
    GM_addStyle('.arson{ padding: 10px;}');
    GM_addStyle('#takeoffWrapper .footer { width:100%; font-weight: 600; text-align: center; background: #272B30; color: #fff; padding: 5px; border-radius: 0 0 5px 5px;}');
    GM_addStyle('#takeoffWrapper .footer a{  color: #fff;}');
    GM_addStyle('#takeoff * {box-sizing: border-box}');
    GM_addStyle('.tab {float: left;border: 1px solid #ccc;background-color: #f1f1f1;width: 30%;}');
    GM_addStyle('.tab button {display: block;background-color: inherit;color: black;padding: 22px 16px;width: 100%;border: none;outline: none;text-align: left;cursor: pointer;transition: 0.3s;}');
    GM_addStyle('.tab button:hover {background-color: #ddd;}');
    GM_addStyle('.tab button.active {background-color: #ccc;}');
    GM_addStyle('.tabcontent {float: left;padding: 10px;width: 70%;border-left: none;}');

    if (window.location.href == 'https://www.torn.com/travelagency.php') {
        $('.content-wrapper').append('<div id="takeoffWrapper"><div id="takeoff"><div class="tab">' +
            '<button id="defaultOpen" class="tablinks" setid="Mexico">Mexico</button>' +
            '<button class="tablinks" setid="Caymanislands">Cayman Islands</button>' +
            '<button class="tablinks" setid="Canada">Canada</button>' +
            '<button class="tablinks" setid="Hawaii">Hawaii</button>' +
            '<button class="tablinks" setid="Unitedkingdom">United Kingdom</button>' +
            '<button class="tablinks" setid="Argentina">Argentina</button>' +
            '<button class="tablinks" setid="Switzerland">Switzerland</button>' +
            '<button class="tablinks" setid="Japan">Japan</button>' +
            '<button class="tablinks" setid="China">China</button>' +
            '<button class="tablinks" setid="Uae">UAE</button>' +
            '<button class="tablinks" setid="Southafrica">South Africa</button>' +
            '</div>' +
            '<div id="Mexico" class="tabcontent"><h3>Mexico</h3></div>' +
            '<div id="Caymanislands" class="tabcontent"><h3>Cayman Islands</h3></div>' +
            '<div id="Canada" class="tabcontent"><h3>Canada</h3></div>' +
            '<div id="Hawaii" class="tabcontent"><h3>Hawaii</h3></div>' +
            '<div id="Unitedkingdom" class="tabcontent"><h3>United Kingdom</h3></div>' +
            '<div id="Argentina" class="tabcontent"><h3>Argentina</h3></div>' +
            '<div id="Switzerland" class="tabcontent"><h3>Switzerland</h3></div>' +
            '<div id="Japan" class="tabcontent"><h3>Japan</h3></div>' +
            '<div id="China" class="tabcontent"><h3>China</h3></div>' +
            '<div id="Uae" class="tabcontent"><h3>UAE</h3></div>' +
            '<div id="Southafrica" class="tabcontent"><h3>South Africa</h3></div></div>' +
            '<div class="clear arson">This add-on uses data from <a href="https://arsonwarehouse.com/" target="_blank">arsonwarehouse.com</a> '+
            'please download for even more accurate data</div><div class="footer">Sponsored by <a href="https://italianlotto.eu">ITALIAN LOTTO</a></div></div>');


        $('.tablinks').click(function (evt) {
            var cityName = $(this).attr('setid');
            var i, tabcontent, tablinks;
            tabcontent = $(".tabcontent");
            for (i = 0; i < tabcontent.length; i++) {
                tabcontent[i].style.display = "none";
            }
            tablinks = $(".tablinks");
            for (i = 0; i < tablinks.length; i++) {
                tablinks[i].className = tablinks[i].className.replace(" active", "");
            }
            $('#' + cityName).css('display', 'block');
            evt.currentTarget.className += " active";

            if (cityName == 'Caymanislands')
                cityName = 'cayman';

            if (cityName == 'Unitedkingdom')
                cityName = 'uk';
            if (cityName == 'Southafrica')
                cityName = 'south-africa';

            $('.raceway.' + cityName.toLowerCase()).trigger('click');
        });

        $('#defaultOpen').trigger('click');

        var content;
        var mexico = [];
        var southafrica = [];
        var argentina = [];
        var canada = [];
        var switzerland = [];
        var unitedkingdom = [];
        var china = [];
        var japan = [];
        var hawaii = [];
        var uae = [];
        var caymanislands = [];

        GM_xmlhttpRequest({
            method: "GET",
            url: "https://arsonwarehouse.com/api/v1/foreign-stock",
            onload: function (response) {
                content = $.parseJSON(response.responseText);
                var items = content.items;

                items.forEach(function (item) {
                    if (itemNames[item.item_id] !== undefined)
                        item.name = itemNames[item.item_id]['name'];
                    if (item.country == 'Mexico')
                        mexico[item.item_id] = item;
                    if (item.country == 'South Africa')
                        southafrica[item.item_id] = item;
                    if (item.country == 'Argentina')
                        argentina[item.item_id] = item;
                    if (item.country == 'Canada')
                        canada[item.item_id] = item;
                    if (item.country == 'Switzerland')
                        switzerland[item.item_id] = item;
                    if (item.country == 'United Kingdom')
                        unitedkingdom[item.item_id] = item;
                    if (item.country == 'China')
                        china[item.item_id] = item;
                    if (item.country == 'Japan')
                        japan[item.item_id] = item;
                    if (item.country == 'Hawaii')
                        hawaii[item.item_id] = item;
                    if (item.country == 'UAE')
                        uae[item.item_id] = item;
                    if (item.country == 'Cayman Islands')
                        caymanislands[item.item_id] = item;
                });

                mexico.sort(sortFunction);
                caymanislands.sort(sortFunction);
                southafrica.sort(sortFunction);
                argentina.sort(sortFunction);
                canada.sort(sortFunction);
                switzerland.sort(sortFunction);
                unitedkingdom.sort(sortFunction);
                china.sort(sortFunction);
                japan.sort(sortFunction);
                hawaii.sort(sortFunction);
                uae.sort(sortFunction);
                caymanislands.sort(sortFunction);
                var date = new Date(mexico[0].reported_at);
                var mexicoTable = '<div id="mexicoTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right last">Stock</th></tr>';
                mexico.forEach(function (item) {
                    mexicoTable += '<tr><td>' + item.name + '</td><td class="to-right">' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                mexicoTable += '</table></div>';

                var date = new Date(caymanislands[0].reported_at);
                var caymanislandsTable = '<div id="caymanislandsTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                caymanislands.forEach(function (item) {
                    caymanislandsTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                caymanislandsTable += '</table></div>';
                date = new Date(canada[0].reported_at);
                var canadaTable = '<div id="canadaTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                canada.forEach(function (item) {
                    canadaTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                caymanislandsTable += '</table></div>';
                date = new Date(hawaii[0].reported_at);
                var hawaiiTable = '<div id="hawaiiTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                hawaii.forEach(function (item) {
                    hawaiiTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                hawaiiTable += '</table></div>';
                date = new Date(unitedkingdom[0].reported_at);
                var unitedkingdomTable = '<div id="unitedkingdomTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                unitedkingdom.forEach(function (item) {
                    unitedkingdomTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                unitedkingdomTable += '</table></div>';
                date = new Date(argentina[0].reported_at);
                var argentinaTable = '<div id="argentinaTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                argentina.forEach(function (item) {
                    argentinaTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                argentinaTable += '</table></div>';
                date = new Date(switzerland[0].reported_at);
                var switzerlandTable = '<div id="switzerlandTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                switzerland.forEach(function (item) {
                    switzerlandTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                switzerlandTable += '</table></div>';
                date = new Date(japan[0].reported_at);
                var japanTable = '<div id="japanTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                japan.forEach(function (item) {
                    japanTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                japanTable += '</table></div>';
                date = new Date(china[0].reported_at);
                var chinaTable = '<div id="chinaTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                china.forEach(function (item) {
                    chinaTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                chinaTable += '</table></div>';
                date = new Date(uae[0].reported_at);
                var uaeTable = '<div id="uaeTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                uae.forEach(function (item) {
                    uaeTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                uaeTable += '</table></div>';
                date = new Date(southafrica[0].reported_at);
                var southafricaTable = '<div id="southafricaTable" class="travel-table"><small>Last update: ' + date.getHours() + ':' + date.getMinutes() + '</small><table><tr><th class="to-left">Item</th><th class="to-right">Price</th><th class="to-right">Stock</th></tr>';
                southafrica.forEach(function (item) {
                    southafricaTable += '<tr><td>' + item.name + '</td><td class="to-right">$ ' + formatter.format(item.price) + '</td><td class="to-right">' + item.stock + '</td>';
                });
                southafricaTable += '</table></div>';

                $('#Mexico').append(mexicoTable);
                $('#Caymanislands').append(caymanislandsTable);
                $('#Canada').append(canadaTable);
                $('#Hawaii').append(hawaiiTable);
                $('#Unitedkingdom').append(unitedkingdomTable);
                $('#Argentina').append(argentinaTable);
                $('#Switzerland').append(switzerlandTable);
                $('#Japan').append(japanTable);
                $('#China').append(chinaTable);
                $('#Uae').append(uaeTable);
                $('#Southafrica').append(southafricaTable);

            }
        });
    };

    var itemNames = {
        "4": {
            "name": "Knuckle Dusters",
            "description": "They won't know what hit them with these strong, hard, brass knuckle dusters. They won't even see it coming!",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 750,
            "sell_price": 500,
            "market_value": 565,
            "circulation": 92257,
            "image": "https://www.torn.com/images/items/4/large.png"
        },
        "8": {
            "name": "Axe",
            "description": "Used mainly for chopping tree roots and splitting kindling. Can bash and split many other substances, too.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 4200,
            "sell_price": 3000,
            "market_value": 3462,
            "circulation": 39920,
            "image": "https://www.torn.com/images/items/8/large.png"
        },
        "11": {
            "name": "Samurai Sword",
            "description": "A ninja-grade, full-tang samurai sword, created for us by a master artisan. The sword balances perfectly, takes and holds a razor edge, and can divide an eyelash or a full skull in one swipe.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 75000,
            "sell_price": 53000,
            "market_value": 58089,
            "circulation": 62866,
            "image": "https://www.torn.com/images/items/11/large.png"
        },
        "20": {
            "name": "Desert Eagle",
            "description": "Fast-firing and very powerful. If you hit your opponent, he goes down and stays down. The magazine only holds eight rounds but the strength of each impact makes up for that.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 45000,
            "sell_price": 37000,
            "market_value": 52184,
            "circulation": 30519,
            "image": "https://www.torn.com/images/items/20/large.png"
        },
        "26": {
            "name": "AK-47",
            "description": "Powerful, accurate and virtually unbreakable. This 30-round magazine fed rifle is a favourite among discerning hit men.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 15000,
            "sell_price": 10000,
            "market_value": 11877,
            "circulation": 54384,
            "image": "https://www.torn.com/images/items/26/large.png"
        },
        "31": {
            "name": "M249 PARA LMG",
            "description": "Huge, heavy weapon with a 100-round magazine. A long burst can tear your opponent to shreds in seconds.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Machine gun",
            "buy_price": 950000,
            "sell_price": 670000,
            "market_value": 734048,
            "circulation": 28050,
            "image": "https://www.torn.com/images/items/31/large.png"
        },
        "50": {
            "name": "Outer Tactical Vest",
            "description": "Despite the Combat Vest offering improved protection, its predecessor the Outer Tactical Vest is far from obsolete. The increased survivability and enhanced maneuverability provided makes it a more than worthwhile addition to your combat wardrobe.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 1000000,
            "sell_price": 750000,
            "market_value": 740714,
            "circulation": 40262,
            "image": "https://www.torn.com/images/items/50/large.png"
        },
        "63": {
            "name": "Minigun",
            "description": "This gun has a 200-round magazine. When you are done with a burst, your enemy will be in fragments.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Heavy artillery",
            "buy_price": 3000000,
            "sell_price": 1250000,
            "market_value": 1419474,
            "circulation": 36385,
            "image": "https://www.torn.com/images/items/63/large.png"
        },
        "99": {
            "name": "Springfield 1911-A1",
            "description": "Steel and light weight aluminium frames, stainless, blued and parkerized finishes, V-12 barrel porting... What more could you want?",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 430,
            "sell_price": 300,
            "market_value": 552,
            "circulation": 53468,
            "image": "https://www.torn.com/images/items/99/large.png"
        },
        "107": {
            "name": "Trench Coat",
            "description": "A thick trench coat that covers most of the body.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 500000,
            "sell_price": 325000,
            "market_value": 365840,
            "circulation": 44669,
            "image": "https://www.torn.com/images/items/107/large.png"
        },
        "108": {
            "name": "9mm Uzi",
            "description": "This Uzi is a compact, boxy, light-weight sub machine gun used throughout the world as a police and special forces firearm.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "SMG",
            "buy_price": 1100000,
            "sell_price": 600000,
            "market_value": 609907,
            "circulation": 21293,
            "image": "https://www.torn.com/images/items/108/large.png"
        },
        "110": {
            "name": "Leather Bullwhip",
            "description": "A whip made of rawhide. In the right hands, it can be a stealthy and deadly weapon. In the wrong hands...you may lose an eye!",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 1500,
            "sell_price": 750,
            "market_value": 753,
            "circulation": 92889,
            "image": "https://www.torn.com/images/items/110/large.png"
        },
        "111": {
            "name": "Ninja Claws",
            "description": "Traditional ninja weapon for close combat, with four needle-sharp spikes.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 8000,
            "sell_price": 5000,
            "market_value": 4134,
            "circulation": 21465,
            "image": "https://www.torn.com/images/items/111/large.png"
        },
        "159": {
            "name": "Bolt Cutters",
            "description": "A pair of quality bolt cutters. Made of tempered steel with cushion-grip handles and durable, heat-treated jaws.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 25,
            "sell_price": 15,
            "market_value": 372,
            "circulation": 956687,
            "image": "https://www.torn.com/images/items/159/large.png"
        },
        "175": {
            "name": "Taser",
            "description": "An electroshock gun, non lethal, but will land your opponent in the hospital for a while just as quickly as a more aggressive weapon will.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Mechanical",
            "buy_price": 5500,
            "sell_price": 4250,
            "market_value": 4298,
            "circulation": 45263,
            "image": "https://www.torn.com/images/items/175/large.png"
        },
        "177": {
            "name": "Cobra Derringer",
            "description": "A small, lightweight pistol. For some people two bullets are all you need.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 70000,
            "sell_price": 55000,
            "market_value": 60026,
            "circulation": 29477,
            "image": "https://www.torn.com/images/items/177/large.png"
        },
        "178": {
            "name": "Flak Jacket",
            "description": "Marine issued armor. Sturdy and effective against most small caliber rounds.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 7500,
            "sell_price": 4750,
            "market_value": 4448,
            "circulation": 37371,
            "image": "https://www.torn.com/images/items/178/large.png"
        },
        "196": {
            "name": "Cannabis",
            "description": "Said to improve one's concentration and nerve.",
            "effect": "Increases nerve by 2-3. Includes side effects.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 6801,
            "circulation": 2753221,
            "image": "https://www.torn.com/images/items/196/large.png"
        },
        "197": {
            "name": "Ecstasy",
            "description": "Improves one's happiness.",
            "effect": "Doubles happiness.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 67792,
            "circulation": 1022955,
            "image": "https://www.torn.com/images/items/197/large.png"
        },
        "198": {
            "name": "Ketamine",
            "description": "Raises one's defense temporarily, resulting in lower strength and speed.",
            "effect": "Temporarily increases Defense by 50%. Includes side effects.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 32724,
            "circulation": 532261,
            "image": "https://www.torn.com/images/items/198/large.png"
        },
        "199": {
            "name": "LSD",
            "description": "Increases one's energy, nerve and happiness.",
            "effect": "Increases energy by 50, nerve by 5, and happiness by 200-500. Includes side effects.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 59905,
            "circulation": 527766,
            "image": "https://www.torn.com/images/items/199/large.png"
        },
        "200": {
            "name": "Opium",
            "description": "Said to relieve a large amount of pain.",
            "effect": "Removes all hospital time and replenishes life by 66.6%. Increases happiness by 50-100.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 81908,
            "circulation": 221705,
            "image": "https://www.torn.com/images/items/200/large.png"
        },
        "201": {
            "name": "PCP",
            "description": "Momentarily improves one's strength and dexterity.",
            "effect": "Temporarily increases Strength and Dexterity by 20%. Increases happiness by 250.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 107947,
            "circulation": 156217,
            "image": "https://www.torn.com/images/items/201/large.png"
        },
        "203": {
            "name": "Shrooms",
            "description": "Said to increase one's happiness at the cost of some energy.",
            "effect": "Increases happiness by 500 and reduces energy by 25. Includes side effects.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 11974,
            "circulation": 475263,
            "image": "https://www.torn.com/images/items/203/large.png"
        },
        "204": {
            "name": "Speed",
            "description": "Increases speed for a short period, but lowers dexterity at the same time.",
            "effect": "Temporarily increases Speed by 20%. Increases happiness by 50. Includes side effects.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 167186,
            "circulation": 128631,
            "image": "https://www.torn.com/images/items/204/large.png"
        },
        "205": {
            "name": "Vicodin",
            "description": "Temporarily passively increases all statistics while attacking or defending by 25%.",
            "effect": "Temporarily increases all battle stats by 25%. Increases happiness by 75.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 4988,
            "circulation": 8455847,
            "image": "https://www.torn.com/images/items/205/large.png"
        },
        "206": {
            "name": "Xanax",
            "description": "Increases one's energy.",
            "effect": "Increases energy by 250 and happiness by 75. Includes side effects.",
            "requirement": "",
            "type": "Drug",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 832590,
            "circulation": 2628039,
            "image": "https://www.torn.com/images/items/206/large.png"
        },
        "217": {
            "name": "Claymore Sword",
            "description": "The claymore is the mother of all broadswords. It's a huge, two-handed thing, approx 4ft long. Do you have the strength to wield this monster?",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 100000,
            "sell_price": 75000,
            "market_value": 73200,
            "circulation": 21858,
            "image": "https://www.torn.com/images/items/217/large.png"
        },
        "218": {
            "name": "Crossbow",
            "description": "A crossbow has more impact damage than a normal bow and is capable of easily piercing metal.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Piercing",
            "buy_price": 900,
            "sell_price": 750,
            "market_value": 883,
            "circulation": 49214,
            "image": "https://www.torn.com/images/items/218/large.png"
        },
        "219": {
            "name": "Enfield SA-80",
            "description": "Gas-powered Enfield SA80 rifles have been the weapon of choice for the British Armed Forces since the 1980's. This edition comes with iron sights as standard, but various telescopic sights can be added to increase its aiming accuracy.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 250000,
            "sell_price": 200000,
            "market_value": 248579,
            "circulation": 72900,
            "image": "https://www.torn.com/images/items/219/large.png"
        },
        "220": {
            "name": "Grenade",
            "description": "A small hand-held bomb. Pull the pin, count to three, then throw it at your enemy.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 10000,
            "sell_price": 7000,
            "market_value": 7093,
            "circulation": 3548975,
            "image": "https://www.torn.com/images/items/220/large.png"
        },
        "221": {
            "name": "Stick Grenade",
            "description": "Stick grenades are less powerful and have shorter fuses than their British counterparts, but weigh significantly less.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 8000,
            "sell_price": 6500,
            "market_value": 7020,
            "circulation": 171460,
            "image": "https://www.torn.com/images/items/221/large.png"
        },
        "222": {
            "name": "Flash Grenade",
            "description": "Often used to blind opponents, can give an edge in battle that is very hard to overcome.",
            "effect": "Opponent becomes Blinded, decreasing Speed to 1/5th for 15-20 seconds.",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 12000,
            "sell_price": 10000,
            "market_value": 52176,
            "circulation": 1359941,
            "image": "https://www.torn.com/images/items/222/large.png"
        },
        "223": {
            "name": "Jackhammer",
            "description": "A gas operated, fully automatic only shotgun. Able to fire 240 rounds per minute, this is not your average shotgun.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Shotgun",
            "buy_price": 5000000,
            "sell_price": 4000000,
            "market_value": 4250062,
            "circulation": 33472,
            "image": "https://www.torn.com/images/items/223/large.png"
        },
        "224": {
            "name": "Swiss Army Knife",
            "description": "Elegant and light weight pocket knife, with several useful tools integrated.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 2500,
            "sell_price": 2000,
            "market_value": 1923,
            "circulation": 107558,
            "image": "https://www.torn.com/images/items/224/large.png"
        },
        "225": {
            "name": "Mag 7",
            "description": "Shotgun intended specially for close combat and operations in confined spaces, like the room-to-room searches.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Shotgun",
            "buy_price": 60000,
            "sell_price": 50000,
            "market_value": 51446,
            "circulation": 37486,
            "image": "https://www.torn.com/images/items/225/large.png"
        },
        "226": {
            "name": "Smoke Grenade",
            "description": "Typically used to send signals or create a smokescreen, this grenade can be used to temporarily blind your opponent, to allow you the upper hand in attacking.",
            "effect": "Opponent becomes Smoked, decreasing Speed to 1/3rd for 120-180 seconds.",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 20000,
            "sell_price": 15000,
            "market_value": 92441,
            "circulation": 1015427,
            "image": "https://www.torn.com/images/items/226/large.png"
        },
        "227": {
            "name": "Spear",
            "description": "A spear is an ancient weapon used for hunting and war, consisting of a shaft, usually of wood, with a sharpened head.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 600,
            "sell_price": 400,
            "market_value": 456,
            "circulation": 33957,
            "image": "https://www.torn.com/images/items/227/large.png"
        },
        "228": {
            "name": "Vektor CR-21",
            "description": "Its futuristic looks are the result of the fact that the entire stock is made of a high-impact polymer. The only metal to be seen on the outside is part of the barrel and the flash-suppressor.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 7500,
            "sell_price": 6500,
            "market_value": 6239,
            "circulation": 34857,
            "image": "https://www.torn.com/images/items/228/large.png"
        },
        "229": {
            "name": "Claymore Mine",
            "description": "The mine contains 700 steel spheres (10.5 grains) and 1-1/2 pound layer of composition C-4 explosive and is initiated by an electric blasting cap.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 15000,
            "sell_price": 11000,
            "market_value": 11124,
            "circulation": 104975,
            "image": "https://www.torn.com/images/items/229/large.png"
        },
        "230": {
            "name": "Flare Gun",
            "description": "Can work as a weapon in a pinch, but only as a last resort.  Works best as a device to create light in some of the darker missions.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 300,
            "sell_price": 200,
            "market_value": 205,
            "circulation": 52712,
            "image": "https://www.torn.com/images/items/230/large.png"
        },
        "231": {
            "name": "Heckler & Koch SL8",
            "description": "H&K SL8 is a lightweight semi automatic gas powered rifle. With a unique stock design this dependable weapon is widely sought after.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 45000,
            "sell_price": 35000,
            "market_value": 32933,
            "circulation": 28909,
            "image": "https://www.torn.com/images/items/231/large.png"
        },
        "232": {
            "name": "SIG 550",
            "description": "The SIG 550 is a custom assault rifle. With a 20 round magazine this weapon can switch between semi automatic and full automatic firing with a flip of a switch.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 65000,
            "sell_price": 55000,
            "market_value": 61317,
            "circulation": 31247,
            "image": "https://www.torn.com/images/items/232/large.png"
        },
        "233": {
            "name": "BT MP9",
            "description": "Offers a lower and more controllable rate of fire compared to other handguns, is also small enough to be effectively fired with one hand.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "SMG",
            "buy_price": 55000,
            "sell_price": 40000,
            "market_value": 43246,
            "circulation": 98052,
            "image": "https://www.torn.com/images/items/233/large.png"
        },
        "234": {
            "name": "Chain Whip",
            "description": "Oriental version of the flail. Consists of 4 to 6 iron bars linked end to end by short lengths of chain.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 2500,
            "sell_price": 2000,
            "market_value": 2000,
            "circulation": 15327,
            "image": "https://www.torn.com/images/items/234/large.png"
        },
        "235": {
            "name": "Wooden Nunchakus",
            "description": "Consists of two wooden bars linked by a short length of chain.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 5000,
            "sell_price": 4000,
            "market_value": 4182,
            "circulation": 13762,
            "image": "https://www.torn.com/images/items/235/large.png"
        },
        "236": {
            "name": "Kama",
            "description": "A simple but very sharp and potentially deadly weapon like a small sickle, a favourite of ninjas.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 50000,
            "sell_price": 40000,
            "market_value": 37333,
            "circulation": 10456,
            "image": "https://www.torn.com/images/items/236/large.png"
        },
        "237": {
            "name": "Kodachi Swords",
            "description": "These 2-foot short swords offer both beginners and masters speed and agility on both defense and offense.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 95000,
            "sell_price": 80000,
            "market_value": 99006,
            "circulation": 96222,
            "image": "https://www.torn.com/images/items/237/large.png"
        },
        "238": {
            "name": "Sai",
            "description": "The sai's distinctive shape makes it a versatile weapon. With skill, it can be used effectively against a long sword  by trapping the sword's blade between the sai's blade and the tsuba and breaking it with a twist of the hand.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 1000,
            "sell_price": 700,
            "market_value": 715,
            "circulation": 20857,
            "image": "https://www.torn.com/images/items/238/large.png"
        },
        "239": {
            "name": "Ninja Stars",
            "description": "A lethal throwing weapon that can pierce an opponent's body before they realize an attack is under way. Conceal them, and then throw them underhand at an enemy when they least expect it.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 500,
            "sell_price": 400,
            "market_value": 1944,
            "circulation": 465703,
            "image": "https://www.torn.com/images/items/239/large.png"
        },
        "240": {
            "name": "Anti Tank",
            "description": "The BILL 2 missile system has a SACLOS (semi-automatic command to line-of-sight) guidance system and the missile is wire-guided.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Heavy artillery",
            "buy_price": 25000000,
            "sell_price": 17000000,
            "market_value": 17003717,
            "circulation": 10290,
            "image": "https://www.torn.com/images/items/240/large.png"
        },
        "241": {
            "name": "Bushmaster Carbon 15 Type 21s",
            "description": "This top of the line assault weapon weighs less than three and a half pounds. A very effective weapon, regardless of the user's stats.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "SMG",
            "buy_price": 15000,
            "sell_price": 10000,
            "market_value": 10006,
            "circulation": 45780,
            "image": "https://www.torn.com/images/items/241/large.png"
        },
        "242": {
            "name": "HEG",
            "description": "A fragmentation grenade used to shock and stun the enemy and cause casualties up to a maximum of 190 metres from the point of burst.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 20000,
            "sell_price": 15000,
            "market_value": 15097,
            "circulation": 3645057,
            "image": "https://www.torn.com/images/items/242/large.png"
        },
        "243": {
            "name": "Taurus",
            "description": "This firearm has been engineered for reliability, accuracy and durability. One of the best low priced weapons you can buy.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 650,
            "sell_price": 400,
            "market_value": 380,
            "circulation": 109827,
            "image": "https://www.torn.com/images/items/243/large.png"
        },
        "244": {
            "name": "Blowgun",
            "description": "Most often used with poison darts, can be quite effective if you don't wish your target to know they are under attack until it's far too late.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Piercing",
            "buy_price": 2500,
            "sell_price": 2000,
            "market_value": 2000,
            "circulation": 40533,
            "image": "https://www.torn.com/images/items/244/large.png"
        },
        "245": {
            "name": "Bo Staff",
            "description": "A long stick carried in the hand. Can't take too much chopping, but its smooth reversal ability makes it a fluid and versatile weapon when used with skill.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 500,
            "sell_price": 300,
            "market_value": 543,
            "circulation": 35772,
            "image": "https://www.torn.com/images/items/245/large.png"
        },
        "246": {
            "name": "Fireworks",
            "description": "A fascinating mix of charcoal, sulphur and saltpetre compressed into a bamboo tube.  Traditionally fireworks are the sign of getting rid of the old and welcoming the new. When this is ignited and thrown at an opponent they will get a nasty surprise!",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 500,
            "sell_price": 300,
            "market_value": 2326,
            "circulation": 150522,
            "image": "https://www.torn.com/images/items/246/large.png"
        },
        "247": {
            "name": "Katana",
            "description": "Curved, single-edged sword, or dao, traditionally used by the Japanese samurai. In well trained hands, a deadly weapon.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 16000,
            "sell_price": 13000,
            "market_value": 14974,
            "circulation": 40851,
            "image": "https://www.torn.com/images/items/247/large.png"
        },
        "248": {
            "name": "Qsz-92",
            "description": "Most recent development of the Chinese state arms factories. Dual stack magazine holds 15 rounds of ammunition in either calibre. Front part of the frame under the barrel is shaped as an accessory rail to accept laser sights or flash lights.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 90000,
            "sell_price": 70000,
            "market_value": 93665,
            "circulation": 54454,
            "image": "https://www.torn.com/images/items/248/large.png"
        },
        "249": {
            "name": "SKS Carbine",
            "description": "This gun, with the proper cartridges, will serve for deer hunting, pest and predator control, and emergency self defense.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 6500,
            "sell_price": 5000,
            "market_value": 5526,
            "circulation": 26084,
            "image": "https://www.torn.com/images/items/249/large.png"
        },
        "250": {
            "name": "Twin Tiger Hooks",
            "description": "This versatile and lethal weapon combines the abilities of a sword, cane and dagger. Perfect for trapping, blocking and slashing.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 50000,
            "sell_price": 40000,
            "market_value": 50100,
            "circulation": 10916,
            "image": "https://www.torn.com/images/items/250/large.png"
        },
        "251": {
            "name": "Wushu Double Axes",
            "description": "This is a pair of lethal axes first forged by the legendary Wushu Warrior Li Kwei. Designed to launch a flurry attack at the enemy, hacking and slashing them to pieces.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 75000,
            "sell_price": 60000,
            "market_value": 99544,
            "circulation": 14391,
            "image": "https://www.torn.com/images/items/251/large.png"
        },
        "252": {
            "name": "Ithaca 37",
            "description": "One of the oldest pump action shotguns still in production, this is a favourite of several generations.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Shotgun",
            "buy_price": 10000,
            "sell_price": 7000,
            "market_value": 7024,
            "circulation": 30702,
            "image": "https://www.torn.com/images/items/252/large.png"
        },
        "253": {
            "name": "Lorcin 380",
            "description": "This is the handgun most frequently submitted by law enforcement agencies for tracing in connection to violent crimes. Very low quality, so very much a \"use and discard\" weapon for short-range attacks.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 300,
            "sell_price": 200,
            "market_value": 197,
            "circulation": 88914,
            "image": "https://www.torn.com/images/items/253/large.png"
        },
        "254": {
            "name": "S&W M29",
            "description": "A six shot double action revolver chambered for the .44 Magnum cartridge. It will also chamber and fire .44 Special cartridges.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Pistol",
            "buy_price": 40000,
            "sell_price": 25000,
            "market_value": 28678,
            "circulation": 24617,
            "image": "https://www.torn.com/images/items/254/large.png"
        },
        "255": {
            "name": "Flamethrower",
            "description": "Built like a backpack, with dual tanks to hold the highly flammable gas. Be careful though, a well placed bullet could be the end of this powerful weapon.. and the person carrying it.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Heavy artillery",
            "buy_price": 3000000,
            "sell_price": 2500000,
            "market_value": 2511355,
            "circulation": 28385,
            "image": "https://www.torn.com/images/items/255/large.png"
        },
        "256": {
            "name": "Tear Gas",
            "description": "Typically used for riot control, this non-lethal gas will temporarily blind your opponent, possibly giving you a bit of an advantage in battle.",
            "effect": "Opponent becomes Gassed, decreasing Dexterity to 1/3rd for 120-180 seconds.",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 15000,
            "sell_price": 10000,
            "market_value": 51801,
            "circulation": 297690,
            "image": "https://www.torn.com/images/items/256/large.png"
        },
        "257": {
            "name": "Throwing Knife",
            "description": "To make the best use of this weapon, skill and practice are needed, but in the right hands, this could be used for a devastating attack.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 35000,
            "sell_price": 30000,
            "market_value": 28517,
            "circulation": 171378,
            "image": "https://www.torn.com/images/items/257/large.png"
        },
        "258": {
            "name": "Jaguar Plushie",
            "description": "Modelled after the third largest cat in the world, this small spotted plushie could be easily confused for a leopard.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 10000,
            "sell_price": 8000,
            "market_value": 17020,
            "circulation": 1565868,
            "image": "https://www.torn.com/images/items/258/large.png"
        },
        "259": {
            "name": "Mayan Statue",
            "description": "Small, dark jade statue of the Mayan God Quetzacoatl. Quetzalcoatl is the god of human sustenance, penitence, self-sacrifice, re-birth and butterflies.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 500,
            "sell_price": 350,
            "market_value": 1364,
            "circulation": 347967,
            "image": "https://www.torn.com/images/items/259/large.png"
        },
        "260": {
            "name": "Dahlia",
            "description": "Spectacular pink bloom with pointed petals, this is the national flower of Mexico.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 300,
            "sell_price": 250,
            "market_value": 2323,
            "circulation": 5517667,
            "image": "https://www.torn.com/images/items/260/large.png"
        },
        "261": {
            "name": "Wolverine Plushie",
            "description": "The wolverine has been described as the fiercest creature on earth, but this small plush version will only growl if you pull its tail.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 30,
            "sell_price": 25,
            "market_value": 9466,
            "circulation": 2461785,
            "image": "https://www.torn.com/images/items/261/large.png"
        },
        "262": {
            "name": "Hockey Stick",
            "description": "Replica of the sticks used in the 1920 Olympics, the first year Hockey was recognized as an official Olympic sport. The Winnipeg Falcons had the honour of taking the Gold medal home to Canada.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 400,
            "sell_price": 300,
            "market_value": 7244,
            "circulation": 905713,
            "image": "https://www.torn.com/images/items/262/large.png"
        },
        "263": {
            "name": "Crocus",
            "description": "This bright blue flower is often considered the national flower of Canada.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 600,
            "sell_price": 400,
            "market_value": 9041,
            "circulation": 2453116,
            "image": "https://www.torn.com/images/items/263/large.png"
        },
        "264": {
            "name": "Orchid",
            "description": "Delicate pink flower, the orchid may not be a native of Hawaii, but it has made the transition to this tropical climate with ease.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 700,
            "sell_price": 500,
            "market_value": 20237,
            "circulation": 2116609,
            "image": "https://www.torn.com/images/items/264/large.png"
        },
        "265": {
            "name": "Pele Charm",
            "description": "Small golden charm of the goddess Pele, bought on your recent trip to the Big Island.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 2000,
            "sell_price": 1800,
            "market_value": 1802,
            "circulation": 465120,
            "image": "https://www.torn.com/images/items/265/large.png"
        },
        "266": {
            "name": "Nessie Plushie",
            "description": "Hidden in the depths of the Loch. Seeing this mythical creature will leave a lasting impression.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 200,
            "sell_price": 150,
            "market_value": 38964,
            "circulation": 1871775,
            "image": "https://www.torn.com/images/items/266/large.png"
        },
        "267": {
            "name": "Heather",
            "description": "Believed to bring good luck to who possess it. These spiky purple and white flowers cover the hillsides of Scotland.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 5000,
            "sell_price": 4000,
            "market_value": 44662,
            "circulation": 1744567,
            "image": "https://www.torn.com/images/items/267/large.png"
        },
        "268": {
            "name": "Red Fox Plushie",
            "description": "Small dark red fox plushie, will serve as a memento from your trip to Britain, and your participation in a local Fox Hunt.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 1000,
            "sell_price": 750,
            "market_value": 40682,
            "circulation": 1887423,
            "image": "https://www.torn.com/images/items/268/large.png"
        },
        "269": {
            "name": "Monkey Plushie",
            "description": "Small plush monkey, made in the image of the simians, often seen around the forests of Argentina.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 400,
            "sell_price": 300,
            "market_value": 46002,
            "circulation": 1692846,
            "image": "https://www.torn.com/images/items/269/large.png"
        },
        "270": {
            "name": "Soccer Ball",
            "description": "Replica of the ball used in the 1930 World Cup final between Argentina and Uruguay.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 50,
            "sell_price": 30,
            "market_value": 2557,
            "circulation": 381701,
            "image": "https://www.torn.com/images/items/270/large.png"
        },
        "271": {
            "name": "Ceibo Flower",
            "description": "This unusual red flower is the national flower of Argentina.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 500,
            "sell_price": 350,
            "market_value": 41272,
            "circulation": 1723355,
            "image": "https://www.torn.com/images/items/271/large.png"
        },
        "272": {
            "name": "Edelweiss",
            "description": "Small white blooms are the hallmark of this Swiss national flower.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 900,
            "sell_price": 700,
            "market_value": 39852,
            "circulation": 4273911,
            "image": "https://www.torn.com/images/items/272/large.png"
        },
        "273": {
            "name": "Chamois Plushie",
            "description": "Small plushie of a Mountain Goat.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 400,
            "sell_price": 300,
            "market_value": 49065,
            "circulation": 2766789,
            "image": "https://www.torn.com/images/items/273/large.png"
        },
        "274": {
            "name": "Panda Plushie",
            "description": "One of the most recognizable endangered species, Xiong Mao, as they are called in Chinese, instantly bring to mind bamboo forests and quiet contemplation.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 400,
            "sell_price": 300,
            "market_value": 68548,
            "circulation": 1924678,
            "image": "https://www.torn.com/images/items/274/large.png"
        },
        "275": {
            "name": "Jade Buddha",
            "description": "In a controversy the instant we feel anger we have already ceased striving for the truth, and have begun striving for ourselves. - Buddha",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 12000,
            "sell_price": 10000,
            "market_value": 9450,
            "circulation": 59927,
            "image": "https://www.torn.com/images/items/275/large.png"
        },
        "276": {
            "name": "Peony",
            "description": "While China has no official national flower, the peony, with its ruffled, pale pink blooms, is widely recognized as the national favourite.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 5000,
            "sell_price": 4000,
            "market_value": 70338,
            "circulation": 1704771,
            "image": "https://www.torn.com/images/items/276/large.png"
        },
        "277": {
            "name": "Cherry Blossom",
            "description": "This beautiful pink blossom is often considered the official flower of Japan.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 500,
            "sell_price": 300,
            "market_value": 61562,
            "circulation": 1706138,
            "image": "https://www.torn.com/images/items/277/large.png"
        },
        "278": {
            "name": "Kabuki Mask",
            "description": "Used in traditional Japanese theatre productions, this beautiful mask can serve as a reminder of your recent trip to Tokyo.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 10000,
            "sell_price": 7000,
            "market_value": 9853,
            "circulation": 54784,
            "image": "https://www.torn.com/images/items/278/large.png"
        },
        "279": {
            "name": "Maneki Neko",
            "description": "Meant to bring good fortune and prosperity to its owner, this little cat is more than just a good luck charm.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 50000,
            "sell_price": 35000,
            "market_value": 35875,
            "circulation": 63595,
            "image": "https://www.torn.com/images/items/279/large.png"
        },
        "280": {
            "name": "Elephant Statue",
            "description": "This ancient ivory statue is made from the tusks of the very animal it represents,and harvesting the tusks for such artworks is ironically bringing the elephant to the brink of extinction.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 500,
            "sell_price": 300,
            "market_value": 3340,
            "circulation": 282195,
            "image": "https://www.torn.com/images/items/280/large.png"
        },
        "281": {
            "name": "Lion Plushie",
            "description": "This small plushie is modelled after the African lion. Squeeze his tummy to hear him roar.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 400,
            "sell_price": 300,
            "market_value": 71206,
            "circulation": 2231611,
            "image": "https://www.torn.com/images/items/281/large.png"
        },
        "282": {
            "name": "African Violet",
            "description": "While not the national flower for Africa, this beautiful purple plant will remind you of your recent trip to the Southern African plains.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 2000,
            "sell_price": 1500,
            "market_value": 69766,
            "circulation": 2494831,
            "image": "https://www.torn.com/images/items/282/large.png"
        },
        "283": {
            "name": "Donator Pack",
            "description": "A Torn City donator pack. Using this will credit you with 31 donator days and give you 50 points!",
            "effect": "Provides 31 days of donator status and 50 points upon opening.",
            "requirement": "",
            "type": "Special",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 23950000,
            "market_value": 24190595,
            "circulation": 124547,
            "image": "https://www.torn.com/images/items/283/large.png"
        },
        "294": {
            "name": "Bottle of Saké",
            "description": "This is an alcoholic beverage much like wine, made from rice and drunk by Japanese for centuries. Sake is drunk before and after many Japanese events. Provides a small nerve increase when consumed.",
            "effect": "Increases nerve by 1 and booster cooldown by 1 hour.",
            "requirement": "",
            "type": "Alcohol",
            "weapon_type": null,
            "buy_price": 39,
            "sell_price": 0,
            "market_value": 3212,
            "circulation": 298269,
            "image": "https://www.torn.com/images/items/294/large.png"
        },
        "326": {
            "name": "Printing Paper",
            "description": "Paper, very similar to the type money is printed on.",
            "effect": "Required for counterfeiting money",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 75000,
            "sell_price": 0,
            "market_value": 55975,
            "circulation": 34369,
            "image": "https://www.torn.com/images/items/326/large.png"
        },
        "327": {
            "name": "Blank Tokens",
            "description": "Blank casino token slugs.",
            "effect": "Required for counterfeiting casino tokens",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 100000,
            "sell_price": 0,
            "market_value": 22867,
            "circulation": 47698,
            "image": "https://www.torn.com/images/items/327/large.png"
        },
        "328": {
            "name": "Blank Credit Cards",
            "description": "Blank credit cards without any data on them.",
            "effect": "Required for counterfeiting credit cards",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 125000,
            "sell_price": 0,
            "market_value": 64875,
            "circulation": 39383,
            "image": "https://www.torn.com/images/items/328/large.png"
        },
        "332": {
            "name": "Combat Vest",
            "description": "This prototype armor improves on the build of the Outer Tactical Vest to bring its wearer even more protection, making it the lightest, most technologically advanced piece of protective armor ever issued to the Armed Forces of the United States.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 3500000,
            "sell_price": 2700000,
            "market_value": 3256800,
            "circulation": 31797,
            "image": "https://www.torn.com/images/items/332/large.png"
        },
        "333": {
            "name": "Liquid Body Armor",
            "description": "Liquid polyethylene glycol and hard nano-particles of silica combined and soaked into all layers of kevlar to make a uniquely flexible and lightweight body armor with amazing stopping power. Top Secret development model!",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 7500000,
            "sell_price": 4500000,
            "market_value": 7670000,
            "circulation": 16396,
            "image": "https://www.torn.com/images/items/333/large.png"
        },
        "334": {
            "name": "Flexible Body Armor",
            "description": "Classified! Top Secret!",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 15000000,
            "sell_price": 9000000,
            "market_value": 17899373,
            "circulation": 29716,
            "image": "https://www.torn.com/images/items/334/large.png"
        },
        "335": {
            "name": "Stick of Dynamite",
            "description": "A small stick of dynamite. This thing could cause a lot of damage if used in the right place...",
            "effect": "Required for Bombing crime",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 50000,
            "sell_price": 35000,
            "market_value": 42000,
            "circulation": 41870,
            "image": "https://www.torn.com/images/items/335/large.png"
        },
        "361": {
            "name": "Neumune Tablet",
            "description": "Neumune, an androstenediol, was introduced as a radiation countermeasure by the US Armed Forces Radiobiology Research Institute and has begun production in Switzerland.  Neumune is in Investigational New Drug (IND) status and Phase I trials have been performed.",
            "effect": "Reduces hospital time by 4-6 hours and radiation by 24 hours. Increases medical cooldown by 6 hours.",
            "requirement": "Under the effect of radiation poisoning.",
            "type": "Medical",
            "weapon_type": null,
            "buy_price": 6500000,
            "sell_price": 0,
            "market_value": 2626256,
            "circulation": 64529,
            "image": "https://www.torn.com/images/items/361/large.png"
        },
        "381": {
            "name": "Gold Laptop",
            "description": "Stun others with this exclusive limited edition solid gold laptop. Crafted from one single block of 99.9% pure gold. Use it while travelling, if your arms can bear the weight.",
            "effect": "Can be used to access additional services while traveling and program viruses.",
            "requirement": "",
            "type": "Electronic",
            "weapon_type": null,
            "buy_price": 8000000000,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 14,
            "image": "https://www.torn.com/images/items/381/large.png"
        },
        "382": {
            "name": "Gold Plated AK-47",
            "description": "One of the best rifles in the world, made even better. This highly tuned, gold plated AK-47 Kalashnikov will send fear coursing through the blood of your enemies. Configured to fire an extended magazine of ammunition, it's not the cheapest, but it'll certainly leave a mark.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 25000000000,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 136,
            "image": "https://www.torn.com/images/items/382/large.png"
        },
        "383": {
            "name": "Platinum PDA",
            "description": "This luxury, platinum plated personal data assistant has a large storage area for contacts. Boosting your friend and blacklist capacity by 500, you'll never be without company again.",
            "effect": "Increases friends list and blacklist capacity by +500.",
            "requirement": "",
            "type": "Electronic",
            "weapon_type": null,
            "buy_price": 12000000000,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 2,
            "image": "https://www.torn.com/images/items/383/large.png"
        },
        "384": {
            "name": "Camel Plushie",
            "description": "This rare camel plushie will instantly remind you of Arabian nights within the U.A.E.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 14000,
            "sell_price": 11000,
            "market_value": 91314,
            "circulation": 1551630,
            "image": "https://www.torn.com/images/items/384/large.png"
        },
        "385": {
            "name": "Tribulus Omanense",
            "description": "Originating in the desert, and soon to become Dubai's official flower, the Tribulus Omanense is a hermaphroditic flower that can survive very harsh conditions.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 6000,
            "sell_price": 4000,
            "market_value": 72285,
            "circulation": 1657977,
            "image": "https://www.torn.com/images/items/385/large.png"
        },
        "386": {
            "name": "Sports Sneakers",
            "description": "This pair of limited edition sneakers will prove their value in the gym. Rumoured to increase speed gains by up to 5%, these lightweight and durable shoes will leave your enemies in the dust.",
            "effect": "Increases speed gains in the gym by 5%.",
            "requirement": "",
            "type": "Enhancer",
            "weapon_type": null,
            "buy_price": 14000000000,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 44,
            "image": "https://www.torn.com/images/items/386/large.png"
        },
        "387": {
            "name": "Handbag",
            "description": "A platinum plated handbag to keep thieves at bay. Its diamond studs will deliver a nasty blow to any opponent.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 16000000000,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 19,
            "image": "https://www.torn.com/images/items/387/large.png"
        },
        "388": {
            "name": "Pink Mac-10",
            "description": "Don't let the pink fool you. With a seriously extended magazine this rapid fire, automatic, sub machine-gun will mow down enemies with ease.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "SMG",
            "buy_price": 23000000000,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 17,
            "image": "https://www.torn.com/images/items/388/large.png"
        },
        "389": {
            "name": "Mr Torn Crown '09",
            "description": "Awarded to GodsCurse [785385] for winning the Mr Torn City awards 2009!",
            "effect": "",
            "requirement": "",
            "type": "Collectible",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 1,
            "image": "https://www.torn.com/images/items/389/large.png"
        },
        "390": {
            "name": "Ms Torn Crown '09",
            "description": "Awarded to Lullsbud [945705] for winning the Miss Torn City awards 2009!",
            "effect": "",
            "requirement": "",
            "type": "Collectible",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 1,
            "image": "https://www.torn.com/images/items/390/large.png"
        },
        "391": {
            "name": "Macana",
            "description": "This South American dagger with a handle of the finest Amazon timber is sharper than it looks. This extremely light, hand crafted weapon is very accurate.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 100000,
            "sell_price": 80000,
            "market_value": 84352,
            "circulation": 78885,
            "image": "https://www.torn.com/images/items/391/large.png"
        },
        "392": {
            "name": "Pepper Spray",
            "description": "The spray contains 200 grams of weapons grade pepper, and once fired can incapacitate your opponent for several seconds. Perfect for that extra edge during a fight.",
            "effect": "Opponent becomes Maced, decreasing Dexterity to 1/5th for 15-20 seconds.",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 800,
            "sell_price": 600,
            "market_value": 1404,
            "circulation": 8165425,
            "image": "https://www.torn.com/images/items/392/large.png"
        },
        "393": {
            "name": "Slingshot",
            "description": "This weapon is perfect against a more powerful opponent, although contrary to popular opinion, it was a sling, not a slingshot, which was used by David against Goliath. Thank you to the ******* pedant who pointed this out.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Clubbing",
            "buy_price": 0,
            "sell_price": 10,
            "market_value": 3500,
            "circulation": 22853,
            "image": "https://www.torn.com/images/items/393/large.png"
        },
        "394": {
            "name": "Brick",
            "description": "The brick is a crude way to disable your opponent, but it's easily acquired from any DIY store or building site, and deadly if you can hit your target in a tender spot.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 5,
            "sell_price": 3,
            "market_value": 402,
            "circulation": 110480969,
            "image": "https://www.torn.com/images/items/394/large.png"
        },
        "395": {
            "name": "Metal Nunchakus",
            "description": "The Metal Nunchakus are easily concealed when folded, but once opened become a weapon with lethal force for someone with Martial Arts training.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 400000,
            "sell_price": 300000,
            "market_value": 435792,
            "circulation": 40842,
            "image": "https://www.torn.com/images/items/395/large.png"
        },
        "396": {
            "name": "Business Class Ticket",
            "description": "If you want to travel in style and comfort, the only way to do this is to travel in business class. Stretch your legs and relax. You can use this two way ticket at the travel agency, and you'll be at your destination before you know it!",
            "effect": "Provides a return business class trip which reduces flight duration by 70%. Grants a base travel capacity of 15.",
            "requirement": "",
            "type": "Special",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 6725549,
            "circulation": 44868,
            "image": "https://www.torn.com/images/items/396/large.png"
        },
        "397": {
            "name": "Flail",
            "description": "Used by knights in ancient times, it is still a devastating weapon in the right hands. This very rare medieval flail is highly inaccurate but will deliver a massive blow to anyone standing in its way.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 8000000,
            "sell_price": 6000000,
            "market_value": 7049445,
            "circulation": 1785,
            "image": "https://www.torn.com/images/items/397/large.png"
        },
        "398": {
            "name": "SIG 552",
            "description": "This rifle is a very powerful weapon and comes with a folding leaf sight.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 7500000,
            "sell_price": 3750000,
            "market_value": 7399900,
            "circulation": 6287,
            "image": "https://www.torn.com/images/items/398/large.png"
        },
        "399": {
            "name": "ArmaLite M-15A4 Rifle",
            "description": "Made from the latest composites, this lightweight but powerful rifle is perfect for the experienced shooter.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 20000000,
            "sell_price": 15000000,
            "market_value": 18060000,
            "circulation": 25633,
            "image": "https://www.torn.com/images/items/399/large.png"
        },
        "400": {
            "name": "Guandao",
            "description": "This Chinese pole weapon has a heavy blade, and a rear spike for when you swing it back around. Truly a weapon for the finest assassins. Not the best accuracy but hits hard!",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 200000,
            "sell_price": 150000,
            "market_value": 151311,
            "circulation": 9354,
            "image": "https://www.torn.com/images/items/400/large.png"
        },
        "401": {
            "name": "Lead Pipe",
            "description": "The lead pipe is quite clumsy and heavy, but a big swing can result in some devastating damage to your opponent.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 150,
            "sell_price": 100,
            "market_value": 119,
            "circulation": 167937,
            "image": "https://www.torn.com/images/items/401/large.png"
        },
        "402": {
            "name": "Ice Pick",
            "description": "Nice and light, the ice pick is easy to handle, but is very sharp and can cause significant damage. Also useful for preparing drinks at parties after a hard week of crime.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 20000,
            "sell_price": 15000,
            "market_value": 18000,
            "circulation": 15808,
            "image": "https://www.torn.com/images/items/402/large.png"
        },
        "403": {
            "name": "Box of Tissues",
            "description": "The perfect present to dry the tears of your opponent in battle. If you win, that is.",
            "effect": "Increases happiness by 5-20 if under 20% of maximum.",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 20,
            "sell_price": 10,
            "market_value": 302,
            "circulation": 5292772,
            "image": "https://www.torn.com/images/items/403/large.png"
        },
        "404": {
            "name": "Bandana",
            "description": "Always nice to wear on warm summer days walking around the city. But be careful as sometimes it's the mark of a gang member.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 500,
            "sell_price": 300,
            "market_value": 819,
            "circulation": 242674,
            "image": "https://www.torn.com/images/items/404/large.png"
        },
        "405": {
            "name": "Loaf of Bread",
            "description": "Considered the staple of many diets, bread tastes best when covered slightly with butter or margarine.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 1,
            "market_value": 0,
            "circulation": 3941,
            "image": "https://www.torn.com/images/items/405/large.png"
        },
        "406": {
            "name": "Afro Comb",
            "description": "Perfect for those bad hair days when your hair just will not behave, the afro comb will get you ready for your date on time.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 50000,
            "sell_price": 30000,
            "market_value": 32333,
            "circulation": 52105,
            "image": "https://www.torn.com/images/items/406/large.png"
        },
        "407": {
            "name": "Compass",
            "description": "This was the GPS of its time, and it made sure that weary travellers could find their way even in the most difficult conditions.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 2500,
            "sell_price": 1750,
            "market_value": 9249,
            "circulation": 106997,
            "image": "https://www.torn.com/images/items/407/large.png"
        },
        "408": {
            "name": "Sextant",
            "description": "Modern cruiseliners do not need a sextant these days, but they are made from the finest bronze and adorn many a Captain's cabin.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 25000,
            "sell_price": 15000,
            "market_value": 15000,
            "circulation": 12138,
            "image": "https://www.torn.com/images/items/408/large.png"
        },
        "409": {
            "name": "Yucca Plant",
            "description": "Native to hot and dry climates, this ornamental plant has tough sword shaped leaves. It is also the state flower of New Mexico and is perfect for your island garden.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 20000,
            "sell_price": 7500,
            "market_value": 8400,
            "circulation": 65455,
            "image": "https://www.torn.com/images/items/409/large.png"
        },
        "410": {
            "name": "Fire Hydrant",
            "description": "The Fire Hydrant is needed in case of fire, especially if you have invested heavily in your property and you want the firemen to put the flames out more quickly.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 20000,
            "sell_price": 15000,
            "market_value": 14500,
            "circulation": 68097,
            "image": "https://www.torn.com/images/items/410/large.png"
        },
        "411": {
            "name": "Model Space Ship",
            "description": "This ship is made of die cast metal and has red LED lights. You can sit back and think about travelling where no one has gone before.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 17500,
            "sell_price": 13000,
            "market_value": 19360,
            "circulation": 51727,
            "image": "https://www.torn.com/images/items/411/large.png"
        },
        "412": {
            "name": "Sports Shades",
            "description": "The ultimate accessory when driving your GT40 with the top down on the highway, these shades are made from a non scratch material. One pair of these last a lifetime.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 10000,
            "sell_price": 3000,
            "market_value": 7917,
            "circulation": 142757,
            "image": "https://www.torn.com/images/items/412/large.png"
        },
        "413": {
            "name": "Mountie Hat",
            "description": "Worn by the Canadian Mounted Police while on duty, it can keep your head warm and dry or keep the sun out of your eyes.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 30000,
            "sell_price": 22500,
            "market_value": 22050,
            "circulation": 27214,
            "image": "https://www.torn.com/images/items/413/large.png"
        },
        "414": {
            "name": "Proda Sunglasses",
            "description": "The ultimate in city chic, these should only be worn when you want to dress to impress.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 100000,
            "sell_price": 2000,
            "market_value": 15212,
            "circulation": 60930,
            "image": "https://www.torn.com/images/items/414/large.png"
        },
        "415": {
            "name": "Ship in a Bottle",
            "description": "People always wonder how the ship got inside the bottle. If you look closely at this amazing ornament you can see tiny sailors on the deck.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 40000,
            "sell_price": 25000,
            "market_value": 34999,
            "circulation": 14713,
            "image": "https://www.torn.com/images/items/415/large.png"
        },
        "416": {
            "name": "Paper Weight",
            "description": "This piece of office equipment has many uses, not just for keeping paper under control on a busy desk. Truly a multi function device.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 1500,
            "sell_price": 1,
            "market_value": 1498,
            "circulation": 93670,
            "image": "https://www.torn.com/images/items/416/large.png"
        },
        "417": {
            "name": "RS232 Cable",
            "description": "This miracle of modern computing technology is rumoured to be able to connect absolutely any two devices together.",
            "effect": "",
            "requirement": "",
            "type": "Electronic",
            "weapon_type": null,
            "buy_price": 30,
            "sell_price": 15,
            "market_value": 310,
            "circulation": 1759261,
            "image": "https://www.torn.com/images/items/417/large.png"
        },
        "418": {
            "name": "Tailors Dummy",
            "description": "This dummy is not only great to try out your latest designs on. It can keep you company on lonely evenings or even serve as a deterrent to would be burglars.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 10000,
            "sell_price": 7500,
            "market_value": 8500,
            "circulation": 18539,
            "image": "https://www.torn.com/images/items/418/large.png"
        },
        "419": {
            "name": "Small Suitcase",
            "description": "The suitcase is something the frequent traveller cannot be without, and this one has a special lead lined hidden compartment should you need to carry contraband. This particular model will allow you to carry 2 more items back with you.",
            "effect": "Increases travel capacity by +2. Does not stack with other suitcases.",
            "requirement": "",
            "type": "Enhancer",
            "weapon_type": null,
            "buy_price": 2000000,
            "sell_price": 1000000,
            "market_value": 1846250,
            "circulation": 5065,
            "image": "https://www.torn.com/images/items/419/large.png"
        },
        "420": {
            "name": "Medium Suitcase",
            "description": "The suitcase is something the frequent traveller cannot be without, and this one has a special lead lined hidden compartment should you need to carry contraband. This particular model will allow you to carry 3 more items back with you.",
            "effect": "Increases travel capacity by +3. Does not stack with other suitcases.",
            "requirement": "",
            "type": "Enhancer",
            "weapon_type": null,
            "buy_price": 4000000,
            "sell_price": 2000000,
            "market_value": 3993100,
            "circulation": 6037,
            "image": "https://www.torn.com/images/items/420/large.png"
        },
        "421": {
            "name": "Large Suitcase",
            "description": "The suitcase is something the frequent traveller cannot be without, and this one has a special lead lined hidden compartment should you need to carry contraband. This particular model will allow you to carry 4 more items back with you.",
            "effect": "Increases travel capacity by +4. Does not stack with other suitcases.",
            "requirement": "",
            "type": "Enhancer",
            "weapon_type": null,
            "buy_price": 10000000,
            "sell_price": 5000000,
            "market_value": 10180211,
            "circulation": 46228,
            "image": "https://www.torn.com/images/items/421/large.png"
        },
        "422": {
            "name": "Vanity Hand Mirror",
            "description": "This compact mirror is ideal to check yourself out before the big date.",
            "effect": "Can be used to check appearance.",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 1029667,
            "circulation": 7388,
            "image": "https://www.torn.com/images/items/422/large.png"
        },
        "423": {
            "name": "Poker Chip",
            "description": "A very rare, lucky poker chip. Carry this in your pocket in your next big tournament; hopefully it will bring you good luck.",
            "effect": "",
            "requirement": "",
            "type": "Collectible",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 654,
            "image": "https://www.torn.com/images/items/423/large.png"
        },
        "424": {
            "name": "Rabbit Foot",
            "description": "This is said to bestow good luck and fortune for those who own one, but be careful: losing it brings massive bad luck.",
            "effect": "",
            "requirement": "",
            "type": "Collectible",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 179,
            "image": "https://www.torn.com/images/items/424/large.png"
        },
        "425": {
            "name": "Voodoo Doll",
            "description": "This doll is for sale to unsuspecting tourists who assume it is a long forgotten art, only to run into bad luck once they return home.",
            "effect": "",
            "requirement": "",
            "type": "Collectible",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 235,
            "image": "https://www.torn.com/images/items/425/large.png"
        },
        "426": {
            "name": "Bottle of Tequila",
            "description": "Full to begin with, empty at the end, be sure to bring one of these back from your holidays in Mexico. Provides a small nerve increase when consumed.",
            "effect": "Increases nerve by 1 and booster cooldown by 1 hour.",
            "requirement": "",
            "type": "Alcohol",
            "weapon_type": null,
            "buy_price": 85,
            "sell_price": 2,
            "market_value": 1134,
            "circulation": 1721813,
            "image": "https://www.torn.com/images/items/426/large.png"
        },
        "427": {
            "name": "Sumo Doll",
            "description": "Whether it be from fear or respect, you definitely need to hold this doll in high regard.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 300,
            "sell_price": 175,
            "market_value": 1199,
            "circulation": 174336,
            "image": "https://www.torn.com/images/items/427/large.png"
        },
        "428": {
            "name": "Casino Pass",
            "description": "The perfect gift for the avid gambler, this pass allows you to stay and gamble after hours, so you can try to make your losses back.",
            "effect": "Provides 50 Casino Tokens upon use.",
            "requirement": "",
            "type": "Special",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 169055999,
            "circulation": 3580,
            "image": "https://www.torn.com/images/items/428/large.png"
        },
        "429": {
            "name": "Chopsticks",
            "description": "You can't go to Japan without giving your next meal a chance with a pair of these chopsticks. Definitely a must have item and experience while visiting.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 25,
            "sell_price": 10,
            "market_value": 1231,
            "circulation": 152879,
            "image": "https://www.torn.com/images/items/429/large.png"
        },
        "430": {
            "name": "Coconut Bra",
            "description": "While traveling in Hawaii and enjoying the amazing beaches they offer, don't forget your Hawaiian attire!",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 750000,
            "sell_price": 300000,
            "market_value": 1010168,
            "circulation": 4908,
            "image": "https://www.torn.com/images/items/430/large.png"
        },
        "431": {
            "name": "Dart Board",
            "description": "Be sure to stop in to the local pub for a quick game of darts while visiting London.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 750,
            "sell_price": 500,
            "market_value": 4355,
            "circulation": 108324,
            "image": "https://www.torn.com/images/items/431/large.png"
        },
        "432": {
            "name": "Crazy Straw",
            "description": "Bend them, stretch them, do as you please with them, but don't get caught without one in your drink.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 25,
            "sell_price": 10,
            "market_value": 263,
            "circulation": 772209,
            "image": "https://www.torn.com/images/items/432/large.png"
        },
        "433": {
            "name": "Sensu",
            "description": "The traditional Japanese fan can be used to keep you cool, or placed for a traditional Japanese look in any room.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 500,
            "sell_price": 300,
            "market_value": 7499,
            "circulation": 57000,
            "image": "https://www.torn.com/images/items/433/large.png"
        },
        "434": {
            "name": "Yakitori Lantern",
            "description": "This bright red lantern will help guide to the nearest Yakitori stall for a quick bite to eat.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 4500,
            "sell_price": 3000,
            "market_value": 9998,
            "circulation": 83964,
            "image": "https://www.torn.com/images/items/434/large.png"
        },
        "435": {
            "name": "Dozen White Roses",
            "description": "When you need just that special gift, nothing says it better than a dozen pure white roses. Specially selected, very rare and expensive flowers.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 950000000,
            "sell_price": 0,
            "market_value": 0,
            "circulation": 91,
            "image": "https://www.torn.com/images/items/435/large.png"
        },
        "436": {
            "name": "Snowboard",
            "description": "This is a must have accessory when visiting the slopes in Switzerland.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 6000,
            "sell_price": 4000,
            "market_value": 5236,
            "circulation": 442985,
            "image": "https://www.torn.com/images/items/436/large.png"
        },
        "437": {
            "name": "Glow Stick",
            "description": "They come in many colors and make the perfect accessory for a night out in the city with your friends.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 0,
            "sell_price": 0,
            "market_value": 80750,
            "circulation": 49040,
            "image": "https://www.torn.com/images/items/437/large.png"
        },
        "438": {
            "name": "Cricket Bat",
            "description": "Made from the finest willow and protected with linseed oil, this bat can literally knock your opponent for six.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 15000,
            "sell_price": 10000,
            "market_value": 20700,
            "circulation": 13082,
            "image": "https://www.torn.com/images/items/438/large.png"
        },
        "439": {
            "name": "Frying Pan",
            "description": "Usually used in the kitchen, it can be a very handy weapon if nothing else is to hand. Makes a loud noise on contact so make sure no witnesses are around.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 400,
            "sell_price": 300,
            "market_value": 436,
            "circulation": 37258,
            "image": "https://www.torn.com/images/items/439/large.png"
        },
        "440": {
            "name": "Pillow",
            "description": "Filled with the finest duck feathers, it is hard to miss your opponent with this pillow. Make sure you swing hard as it is very soft to the touch.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Clubbing",
            "buy_price": 10000000,
            "sell_price": 0,
            "market_value": 938286,
            "circulation": 19992,
            "image": "https://www.torn.com/images/items/440/large.png"
        },
        "612": {
            "name": "Tavor TAR-21",
            "description": "The Tavor TAR-21 is a gas operated, selective fire, magazine fed assault rifle of bullpup configuration.",
            "effect": "",
            "requirement": "",
            "type": "Primary",
            "weapon_type": "Rifle",
            "buy_price": 495000,
            "sell_price": 350000,
            "market_value": 369972,
            "circulation": 30040,
            "image": "https://www.torn.com/images/items/612/large.png"
        },
        "613": {
            "name": "Harpoon",
            "description": "Originally used to catch fish and large marine mammals. When fired the spear can penetrate through most armor worn by humans.",
            "effect": "",
            "requirement": "",
            "type": "Secondary",
            "weapon_type": "Piercing",
            "buy_price": 300000,
            "sell_price": 200000,
            "market_value": 232216,
            "circulation": 12667,
            "image": "https://www.torn.com/images/items/613/large.png"
        },
        "614": {
            "name": "Diamond Bladed Knife",
            "description": "A saw blade which has diamonds fixed on the blade's base to cut hard or abrasive materials. This weapon is so sharp it will literally cut through anything.",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Piercing",
            "buy_price": 950000,
            "sell_price": 800000,
            "market_value": 800641,
            "circulation": 78333,
            "image": "https://www.torn.com/images/items/614/large.png"
        },
        "615": {
            "name": "Naval Cutlass",
            "description": "The 1860 Naval cutlass has a 27\" sharpened steel blade. It can slice any enemy open like butter!",
            "effect": "",
            "requirement": "",
            "type": "Melee",
            "weapon_type": "Slashing",
            "buy_price": 50000000,
            "sell_price": 40000000,
            "market_value": 57449500,
            "circulation": 2019,
            "image": "https://www.torn.com/images/items/615/large.png"
        },
        "616": {
            "name": "Trout",
            "description": "This 22 inch prize trout will make a fantastic feast. Alternatively you could express your disappointment or disgust with someone by bludgeoning them with it.",
            "effect": "",
            "requirement": "",
            "type": "Temporary",
            "weapon_type": "Temporary",
            "buy_price": 10000,
            "sell_price": 7500,
            "market_value": 16148,
            "circulation": 371050,
            "image": "https://www.torn.com/images/items/616/large.png"
        },
        "617": {
            "name": "Banana Orchid",
            "description": "The national flower of the Cayman Islands, the Wild Banana Orchid is one of many species on the islands but certainly the most unique and recognizable.",
            "effect": "",
            "requirement": "",
            "type": "Flower",
            "weapon_type": null,
            "buy_price": 4000,
            "sell_price": 3000,
            "market_value": 10465,
            "circulation": 2322861,
            "image": "https://www.torn.com/images/items/617/large.png"
        },
        "618": {
            "name": "Stingray Plushie",
            "description": "A cuddly stingray plushie, one of the Cayman Islands' most famous inhabitants.",
            "effect": "",
            "requirement": "",
            "type": "Plushie",
            "weapon_type": null,
            "buy_price": 400,
            "sell_price": 300,
            "market_value": 10277,
            "circulation": 2029107,
            "image": "https://www.torn.com/images/items/618/large.png"
        },
        "619": {
            "name": "Steel Drum",
            "description": "55 gallons of musical steel to calypso the night away - musical talent not included!",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 1500,
            "sell_price": 1000,
            "market_value": 1041,
            "circulation": 89405,
            "image": "https://www.torn.com/images/items/619/large.png"
        },
        "620": {
            "name": "Nodding Turtle",
            "description": "Duuuuuude, this tiny nodding turtle will agree with everything you say.",
            "effect": "",
            "requirement": "",
            "type": "Other",
            "weapon_type": null,
            "buy_price": 750,
            "sell_price": 500,
            "market_value": 1427,
            "circulation": 672757,
            "image": "https://www.torn.com/images/items/620/large.png"
        },
        "621": {
            "name": "Snorkel",
            "description": "A pair of reef exploring goggles with snorkel. Make sure you're properly equipped before heading out to the ocean!",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 20000,
            "sell_price": 15000,
            "market_value": 11431,
            "circulation": 25059,
            "image": "https://www.torn.com/images/items/621/large.png"
        },
        "622": {
            "name": "Flippers",
            "description": "A pair of diving flippers more than suitable for snorkelling. If you're looking for underwater speed, you've got it!",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 10000,
            "sell_price": 7500,
            "market_value": 7000,
            "circulation": 33435,
            "image": "https://www.torn.com/images/items/622/large.png"
        },
        "623": {
            "name": "Speedo",
            "description": "Although not so visually appealing, it's important to be streamlined when snorkelling.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 6000,
            "sell_price": 4000,
            "market_value": 4125,
            "circulation": 69587,
            "image": "https://www.torn.com/images/items/623/large.png"
        },
        "624": {
            "name": "Bikini",
            "description": "The most popular female beachwear around the globe. Perfect for snorkelling, and perhaps in some cases, cross dressing.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 8000,
            "sell_price": 6000,
            "market_value": 14123,
            "circulation": 159078,
            "image": "https://www.torn.com/images/items/624/large.png"
        },
        "625": {
            "name": "Wetsuit",
            "description": "For more advanced snorkellers, this suit will provide buoyancy in water and keep the cold out.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 30000,
            "sell_price": 20000,
            "market_value": 20000,
            "circulation": 18931,
            "image": "https://www.torn.com/images/items/625/large.png"
        },
        "626": {
            "name": "Diving Gloves",
            "description": "These thick diving gloves will protect your hands from harsh rocks and cold water.",
            "effect": "",
            "requirement": "",
            "type": "Clothing",
            "weapon_type": null,
            "buy_price": 5000,
            "sell_price": 3000,
            "market_value": 2969,
            "circulation": 100103,
            "image": "https://www.torn.com/images/items/626/large.png"
        },
        "640": {
            "name": "Kevlar Gloves",
            "description": "These gloves can protect you from cuts and extreme temperatures, providing light-weight dexterity and comfort.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 400000,
            "sell_price": 320000,
            "market_value": 400325,
            "circulation": 28625,
            "image": "https://www.torn.com/images/items/640/large.png"
        },
        "641": {
            "name": "WWII Helmet",
            "description": "The Stahlhelm (\"steel helmet\"), with its distinctive \"coal scuttle\" shape, was an instantly-recognizable military icon and became a common element of military propaganda as well as protecting many skulls from shrapnel.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 89500,
            "sell_price": 71000,
            "market_value": 120530,
            "circulation": 42192,
            "image": "https://www.torn.com/images/items/641/large.png"
        },
        "643": {
            "name": "Construction Helmet",
            "description": "Protects you from tools and other object dropped by fellow-workers above you, and from muggers trying to crack your skull. Also gives you license to whistle at likely-looking passers-by.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 14000,
            "sell_price": 11500,
            "market_value": 18283,
            "circulation": 29207,
            "image": "https://www.torn.com/images/items/643/large.png"
        },
        "645": {
            "name": "Safety Boots",
            "description": "These steel-toed boots protect your feet from heavy, sharp, or hot objects; provide extra power for your kick; and gain you respect among the street-wise.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 77000,
            "sell_price": 58000,
            "market_value": 81207,
            "circulation": 55745,
            "image": "https://www.torn.com/images/items/645/large.png"
        },
        "651": {
            "name": "Combat Helmet",
            "description": "This helmet cradles the wearer's head and provides protection against both concussion and shrapnel. You can also fill it with water and boil eggs for your supper.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 3100000,
            "sell_price": 2600000,
            "market_value": 2929839,
            "circulation": 53495,
            "image": "https://www.torn.com/images/items/651/large.png"
        },
        "652": {
            "name": "Combat Pants",
            "description": "These pants are camouflaged, so you may have trouble finding them in your closet. However, once on they provide added protection against cuts and abrasions and have many handy pockets.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 2950000,
            "sell_price": 2450000,
            "market_value": 2882500,
            "circulation": 68713,
            "image": "https://www.torn.com/images/items/652/large.png"
        },
        "653": {
            "name": "Combat Boots",
            "description": "These boots will keep you well-attached to the surface of the Earth. Their weight is largely made up of protective layers in the sole and uppers to keep your feet safer even when you waltz through a minefield.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 2400000,
            "sell_price": 1920000,
            "market_value": 2239530,
            "circulation": 61504,
            "image": "https://www.torn.com/images/items/653/large.png"
        },
        "654": {
            "name": "Combat Gloves",
            "description": "These reinforced gauntlets keep your hands safe in close-combat situations, although they do make it harder to text on your cell phone.",
            "effect": "",
            "requirement": "",
            "type": "Defensive",
            "weapon_type": null,
            "buy_price": 2100000,
            "sell_price": 1870000,
            "market_value": 2001775,
            "circulation": 63609,
            "image": "https://www.torn.com/images/items/654/large.png"
        }
    }


})();