diff --git a/resources/[inventory]/tgiann-inventory/items/items.lua b/resources/[inventory]/tgiann-inventory/items/items.lua index 5a7277392..5c4633a3c 100644 --- a/resources/[inventory]/tgiann-inventory/items/items.lua +++ b/resources/[inventory]/tgiann-inventory/items/items.lua @@ -1,394 +1,10228 @@ -itemsData = { - -- Clothe items - c_necklace = { name = "c_necklace", label = "Necklace (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_bproof = { name = "c_bproof", label = "Bullet Proof (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_decal = { name = "c_decal", label = "Decals (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_torso = { name = "c_torso", label = "Torso (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_mask = { name = "c_mask", label = "Mask (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_helmet = { name = "c_helmet", label = "Hat (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_glasses = { name = "c_glasses", label = "Glasses (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_bag = { name = "c_bag", label = "Bag (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_pants = { name = "c_pants", label = "Pants (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_shoes = { name = "c_shoes", label = "Shoes (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_bracelet = { name = "c_bracelet", label = "Bracelet (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_watch = { name = "c_watch", label = "Watch (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - c_ear = { name = "c_ear", label = "Ear (Clothe)", clothe = true, weight = 0, type = "item", unique = true, useable = false, shouldClose = false, description = "" }, - kposet = { name = "kposet", label = "Clothes Bag", weight = 100, type = "item", unique = true, useable = true, shouldClose = false, description = "Special Bag to Store Your Clothes" }, -- Clothe small bag item - bkposet = { name = "bkposet", label = "Clothes Bag Plus", weight = 300, type = "item", unique = true, useable = true, shouldClose = false, description = "Special Bag to Store Your Clothes" }, -- Clothe big bag item - clothe_set = { name = 'clothe_set', label = 'Clothe Set', weight = 0, type = 'item', image = 'clothe_set.png', clothe = true, unique = true, useable = true, shouldClose = false, description = '' }, -- Clothe set item +QBShared = QBShared or {} - -- Police ammo items - police_stungun_ammo = { rareName = "weaponPoliceAmmo", name = 'police_stungun_ammo', label = 'Pollice Stungun ammo', weight = 200, type = 'item', image = 'stungun_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for Stungun' }, - police_pistol_ammo = { rareName = "weaponPoliceAmmo", name = 'police_pistol_ammo', label = 'Pollice Pistol ammo', weight = 200, type = 'item', image = 'pistol_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for Pistols' }, - police_rifle_ammo = { rareName = "weaponPoliceAmmo", name = 'police_rifle_ammo', label = 'Pollice Rifle ammo', weight = 1000, type = 'item', image = 'rifle_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for Rifles' }, - police_smg_ammo = { rareName = "weaponPoliceAmmo", name = 'police_smg_ammo', label = 'Pollice SMG ammo', weight = 500, type = 'item', image = 'smg_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for Sub Machine Guns' }, - police_shotgun_ammo = { rareName = "weaponPoliceAmmo", name = 'police_shotgun_ammo', label = 'Pollice Shotgun ammo', weight = 500, type = 'item', image = 'shotgun_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for Shotguns' }, - police_mg_ammo = { rareName = "weaponPoliceAmmo", name = 'police_mg_ammo', label = 'Pollice MG ammo', weight = 1000, type = 'item', image = 'mg_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for Machine Guns' }, - police_snp_ammo = { rareName = "weaponPoliceAmmo", name = 'police_snp_ammo', label = 'Pollice Sniper ammo', weight = 1000, type = 'item', image = 'rifle_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for Sniper Rifles' }, - police_emp_ammo = { rareName = "weaponPoliceAmmo", name = 'police_emp_ammo', label = 'Pollice EMP Ammo', weight = 200, type = 'item', image = 'emp_ammo.webp', unique = false, useable = true, shouldClose = true, description = 'Ammo for EMP Launcher' }, - - -- Ammo items - pistol_ammo = { name = 'pistol_ammo', label = 'Pistol ammo', weight = 200, type = 'item', image = 'pistol_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Pistols' }, - rifle_ammo = { name = 'rifle_ammo', label = 'Rifle ammo', weight = 1000, type = 'item', image = 'rifle_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Rifles' }, - smg_ammo = { name = 'smg_ammo', label = 'SMG ammo', weight = 500, type = 'item', image = 'smg_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Sub Machine Guns' }, - shotgun_ammo = { name = 'shotgun_ammo', label = 'Shotgun ammo', weight = 500, type = 'item', image = 'shotgun_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Shotguns' }, - mg_ammo = { name = 'mg_ammo', label = 'MG ammo', weight = 1000, type = 'item', image = 'mg_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Machine Guns' }, - snp_ammo = { name = 'snp_ammo', label = 'Sniper ammo', weight = 1000, type = 'item', image = 'rifle_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Sniper Rifles' }, - emp_ammo = { name = 'emp_ammo', label = 'EMP Ammo', weight = 200, type = 'item', image = 'emp_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for EMP Launcher' }, - - -- Test Items - testburger = { - name = "testburger", - label = 'Test Burger', - weight = 220, - useable = true, - client = { - image = 'burger_chicken.png', - status = { hunger = 200000, thirst = 10000 }, - anim = { dict = 'missheistdockssetup1clipboard@idle_a', clip = 'idle_a', flag = 49 }, - prop = { model = `prop_rolled_sock_02`, pos = vec3(-0.14, -0.14, -0.08), rot = vec3(-50.0, -50.0, 0.0) }, - usetime = 2500, - export = 'tgiann_inventory_examples.testburger' -- Script Name . Function name - }, - server = { - export = 'tgiann_inventory_examples.testburger', -- Script Name . Function name - }, - unique = true - }, - testbandage = { - name = "testbandage", - label = 'Bandage', - weight = 115, - useable = true, - client = { - anim = { dict = 'missheistdockssetup1clipboard@idle_a', clip = 'idle_a', flag = 49 }, - prop = { model = `prop_rolled_sock_02`, pos = vec3(-0.14, -0.14, -0.08), rot = vec3(-50.0, -50.0, 0.0) }, - disable = { move = true, car = true, combat = true }, - usetime = 2500, - }, - buttons = { - { - label = 'Custom Button', - action = function(slot) - print('Custom Button', slot) - end - } - }, - add = function(amount) - print('Added', amount) - end, - remove = function(amount) - print('Removed', amount) - end - }, - --Money as Item - cash = { name = 'cash', label = 'Bargeld', weight = 0, type = 'item', image = 'money.png', unique = false, useable = false, shouldClose = false, description = 'Green Paper' }, - - television = { name = 'television', label = 'Television', weight = 100, type = 'item', image = 'television.png', unique = false, useable = true, shouldClose = true, description = '' }, - present = { name = 'present', label = 'Present', weight = 100, type = 'item', image = 'present.png', unique = false, useable = true, shouldClose = true, description = '' }, - phone = { name = 'phone', label = 'phone', weight = 100, type = 'item', image = 'phone.png', unique = true, useable = true, shouldClose = true, description = '' }, - - testitem = { name = 'testitem', label = 'Test Item', weight = 0, type = 'item', image = 'testitem.png', unique = false, useable = true, shouldClose = true, description = 'testitem' }, - testitemuniq = { name = 'testitemuniq', label = 'Test Item Uniq', weight = 10, type = 'item', image = 'testitemuniq.png', unique = true, useable = true, shouldClose = true, description = 'testitemuniq' }, - testitemlong = { name = 'testitemlong', label = 'Test Item Long Long Long Name', weight = 0, type = 'item', image = 'testitemlong.png', unique = false, useable = true, shouldClose = true, description = 'testitemlong' }, - - kurkakola = { name = 'kurkakola', label = 'Cola', weight = 100, type = 'item', image = 'kurkakola.png', unique = false, useable = true, shouldClose = true, description = '' }, - water_bottle = { name = 'water_bottle', label = 'Water bottle', weight = 100, type = 'item', image = 'water_bottle.png', unique = false, useable = true, shouldClose = true, description = '' }, - bread = { name = 'bread', label = 'Bread', weight = 100, type = 'item', image = 'bread.png', unique = false, useable = true, shouldClose = true, description = '' }, - water = { name = 'water', label = 'Water bottle', weight = 100, type = 'item', image = 'water.png', unique = false, useable = true, shouldClose = true, description = '' }, - radio = { name = 'radio', label = 'Radio', weight = 100, type = 'item', image = 'radio.png', unique = false, useable = true, shouldClose = true, description = '' }, - t_armor_heavy = { name = 't_armor_heavy', label = 'Heavy Armor', weight = 100, type = 'item', image = 't_armor_heavy.png', unique = true, useable = true, shouldClose = true, description = '' }, - t_armor_light = { name = 't_armor_light', label = 'Heavy Armor', weight = 100, type = 'item', image = 't_armor_light.png', unique = true, useable = true, shouldClose = true, description = '' }, - car_key = { name = 'car_key', label = 'Car Key', weight = 100, type = 'item', image = 'car_key.png', unique = true, useable = true, shouldClose = true, description = '' }, - - -- tgiann bank - creditcard_lvl_1 = { name = 'creditcard_lvl_1', label = 'Lost Credit Cards Normal', weight = 100, type = 'item', image = 'creditcard_lvl_1.png', unique = false, useable = true, shouldClose = true, description = '' }, - creditcard_lvl_2 = { name = 'creditcard_lvl_2', label = 'Lost Credit Cards Gold', weight = 100, type = 'item', image = 'creditcard_lvl_2.png', unique = false, useable = true, shouldClose = true, description = '' }, - creditcard_lvl_3 = { name = 'creditcard_lvl_3', label = 'Lost Credit Cards Platinum', weight = 100, type = 'item', image = 'creditcard_lvl_3.png', unique = false, useable = true, shouldClose = true, description = '' }, - - -- tgiann-animpos-photo-cam - polaroid = { name = 'polaroid', label = 'Polaroid Image', weight = 100, type = 'item', image = 'polaroid_image.png', unique = true, useable = true, shouldClose = true, description = '' }, - polaroid_empty = { name = 'polaroid_empty', label = 'Empty Polaroid', weight = 100, type = 'item', image = 'polaroid_image.png', unique = false, useable = false, shouldClose = false, description = '' }, - - -- tgiann-food-jobs - packetlumipier = { name = "packetlumipier", label = "Lumi Cafe", image = 'packetlumipier.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetbahama = { name = "packetbahama", label = "Bahama Mamas", image = 'packetbahama.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetbeanmachine = { name = "packetbeanmachine", label = "Bean Machine Cafe", image = 'packetbeanmachine.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetburger = { name = "packetburger", label = "Burger Shot", image = 'packetburger.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packethornys = { name = "packethornys", label = "Hornys", image = 'packethornys.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetkoi = { name = "packetkoi", label = "KOI", image = 'packetkoi.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetpearls = { name = "packetpearls", label = "Pearls", image = 'packetpearls.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetpizza = { name = "packetpizza", label = "Pizza This", image = 'packetpizza.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetdinner = { name = "packetdinner", label = "Pops Dinner", image = 'packetdinner.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packettriads = { name = "packettriads", label = "Triads", image = 'packettriads.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetatom = { name = "packetatom", label = "Up un Atom", image = 'packetatom.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetuwu = { name = "packetuwu", label = "Cat Cafe", image = 'packetuwu.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packetvanillaunicorn = { name = "packetvanillaunicorn", label = "Vanilla Unicorn", image = 'packetvanillaunicorn.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packettequilala = { name = "packettequilala", label = "Tequi-la-la", image = 'packettequilala.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - packeticecream = { name = "packeticecream", label = "Dondurmacı", image = 'packeticecream.png', weight = 100, type = "item", unique = true, useable = true, shouldClose = true, description = "" }, - -- Cocktail - blue_lagoon = { name = "blue_lagoon", label = "Blue Lagoon", weight = 100, type = "item", image = "blue_lagoon.png", unique = true, useable = true, shouldClose = false, description = "" }, - midori_sour = { name = "midori_sour", label = "Midori Sour", weight = 100, type = "item", image = "midori_sour.png", unique = true, useable = true, shouldClose = false, description = "" }, - moscow_mule = { name = "moscow_mule", label = "Moscow Mule", weight = 100, type = "item", image = "moscow_mule.png", unique = true, useable = true, shouldClose = false, description = "" }, - pina_colada = { name = "pina_colada", label = "Pina Colada", weight = 100, type = "item", image = "pina_colada.png", unique = true, useable = true, shouldClose = false, description = "" }, - tom_collins = { name = "tom_collins", label = "Tom Collins", weight = 100, type = "item", image = "tom_collins.png", unique = true, useable = true, shouldClose = false, description = "" }, - espresso_martini = { name = "espresso_martini", label = "Espresso Martini", weight = 100, type = "item", image = "espresso_martini.png", unique = true, useable = true, shouldClose = false, description = "" }, - grey_hound = { name = "grey_hound", label = "Grey Hound", weight = 100, type = "item", image = "grey_hound.png", unique = true, useable = true, shouldClose = false, description = "" }, - sex_on_the_beach = { name = "sex_on_the_beach", label = "Sex On The Beach", weight = 100, type = "item", image = "sex_on_the_beach.png", unique = true, useable = true, shouldClose = false, description = "" }, - mojito = { name = "mojito", label = "Mojito", weight = 100, type = "item", image = "mojito.png", unique = true, useable = true, shouldClose = false, description = "" }, - tequila_sunrise = { name = "tequila_sunrise", label = "Tequila Sunrise", weight = 100, type = "item", image = "tequila_sunrise.png", unique = true, useable = true, shouldClose = false, description = "" }, - old_fashioned = { name = "old_fashioned", label = "Old Fashioned", weight = 100, type = "item", image = "old_fashioned.png", unique = true, useable = true, shouldClose = false, description = "" }, - harvey_wallbanger = { name = "harvey_wallbanger", label = "Harvey Wallbanger", weight = 100, type = "item", image = "harvey_wallbanger.png", unique = true, useable = true, shouldClose = false, description = "" }, - bellini = { name = "bellini", label = "Bellini", weight = 100, type = "item", image = "bellini.png", unique = true, useable = true, shouldClose = false, description = "" }, - bloody_mary = { name = "bloody_mary", label = "Bloody Mary", weight = 100, type = "item", image = "bloody_mary.png", unique = true, useable = true, shouldClose = false, description = "" }, - caiprinha = { name = "caiprinha", label = "Caiprinha", weight = 100, type = "item", image = "caiprinha.png", unique = true, useable = true, shouldClose = false, description = "" }, - cosmopolitan = { name = "cosmopolitan", label = "Cosmopolitan", weight = 100, type = "item", image = "cosmopolitan.png", unique = true, useable = true, shouldClose = false, description = "" }, - cuba_libre = { name = "cuba_libre", label = "Cuba Libre", weight = 100, type = "item", image = "cuba_libre.png", unique = true, useable = true, shouldClose = false, description = "" }, - gin_gimlit = { name = "gin_gimlit", label = "Gin Gimlit", weight = 100, type = "item", image = "gin_gimlit.png", unique = true, useable = true, shouldClose = false, description = "" }, - gin_tonic = { name = "gin_tonic", label = "Gin & Tonic", weight = 100, type = "item", image = "gin_tonic.png", unique = true, useable = true, shouldClose = false, description = "" }, - irish_coffee = { name = "irish_coffee", label = "Irish Coffee", weight = 100, type = "item", image = "irish_coffee.png", unique = true, useable = true, shouldClose = false, description = "" }, - mai_tai = { name = "mai_tai", label = "Mai Tai", weight = 100, type = "item", image = "mai_tai.png", unique = true, useable = true, shouldClose = false, description = "" }, - manhattan_martini = { name = "manhattan_martini", label = "Manhattan Martini", weight = 100, type = "item", image = "manhattan_martini.png", unique = true, useable = true, shouldClose = false, description = "" }, - mimosa = { name = "mimosa", label = "Mimosa", weight = 100, type = "item", image = "mimosa.png", unique = true, useable = true, shouldClose = false, description = "" }, - mint_julep = { name = "mint_julep", label = "Mint JuleP", weight = 100, type = "item", image = "mint_julep.png", unique = true, useable = true, shouldClose = false, description = "" }, - raki = { name = "raki", label = "Raki", weight = 100, type = "item", image = "raki.png", unique = true, useable = true, shouldClose = false, description = "" }, - --Bear - ale = { name = "ale", label = "Ale", weight = 100, type = "item", image = "ale.png", unique = true, useable = true, shouldClose = false, description = "" }, - blonde = { name = "blonde", label = "Blonde", weight = 100, type = "item", image = "blonde.png", unique = true, useable = true, shouldClose = false, description = "" }, - larger = { name = "larger", label = "Larger", weight = 100, type = "item", image = "larger.png", unique = true, useable = true, shouldClose = false, description = "" }, - pilsner = { name = "pilsner", label = "Pilsner", weight = 100, type = "item", image = "pilsner.png", unique = true, useable = true, shouldClose = false, description = "" }, - ryes = { name = "ryes", label = "Ryes", weight = 100, type = "item", image = "ryes.png", unique = true, useable = true, shouldClose = false, description = "" }, - --Wine - bordeaux = { name = "bordeaux", label = "Bordeaux", weight = 100, type = "item", image = "bordeaux.png", unique = true, useable = true, shouldClose = false, description = "" }, - burgundy = { name = "burgundy", label = "Burgundy", weight = 100, type = "item", image = "burgundy.png", unique = true, useable = true, shouldClose = false, description = "" }, - cabernet = { name = "cabernet", label = "Cabernet", weight = 100, type = "item", image = "cabernet.png", unique = true, useable = true, shouldClose = false, description = "" }, - champ = { name = "champ", label = "Champ", weight = 100, type = "item", image = "champ.png", unique = true, useable = true, shouldClose = false, description = "" }, - chardonnay = { name = "chardonnay", label = "Chardonnay", weight = 100, type = "item", image = "chardonnay.png", unique = true, useable = true, shouldClose = false, description = "" }, - pinot_nior = { name = "pinot_nior", label = "Pinot Nior", weight = 100, type = "item", image = "pinot_nior.png", unique = true, useable = true, shouldClose = false, description = "" }, - white = { name = "white", label = "White", weight = 100, type = "item", image = "white.png", unique = true, useable = true, shouldClose = false, description = "" }, - zifandel = { name = "zifandel", label = "Zifandel", weight = 100, type = "item", image = "zifandel.png", unique = true, useable = true, shouldClose = false, description = "" }, - stout = { name = "stout", label = "stout", weight = 100, type = "item", image = "stout.png", unique = true, useable = true, shouldClose = false, description = "" }, - -- coffee - nekolatte = { name = "nekolatte", label = "Neko Latte", weight = 100, type = "item", image = "nekolatte.png", unique = true, useable = true, shouldClose = true, description = "" }, - mocha = { name = "mocha", label = "Mocha", weight = 100, type = "item", image = "mocha.png", unique = true, useable = true, shouldClose = true, description = "" }, - cappuccino = { name = "cappuccino", label = "cappuccino", weight = 100, type = "item", image = "cappuccino.png", unique = true, useable = true, shouldClose = true, description = "" }, - latte = { name = "latte", label = "Latte", weight = 100, type = "item", image = "latte.png", unique = true, useable = true, shouldClose = true, description = "" }, - latte_macchiato = { name = "latte_macchiato", label = "Latte Macchiato", weight = 100, type = "item", image = "latte_macchiato.png", unique = true, useable = true, shouldClose = true, description = "" }, - coffee = { name = "coffee", label = "coffee", weight = 0, type = "item", image = "coffee.png", unique = true, useable = true, shouldClose = true, description = "", }, - coffee_1x = { name = "coffee_1x", label = "small coffee", weight = 100, type = "item", image = "coffee_1x.png", unique = true, useable = true, shouldClose = true, description = "" }, - coffee_2x = { name = "coffee_2x", label = "medium coffee", weight = 100, type = "item", image = "coffee_2x.png", unique = true, useable = true, shouldClose = true, description = "" }, - coffee_3x = { name = "coffee_3x", label = "large coffee", weight = 100, type = "item", image = "coffee_3x.png", unique = true, useable = true, shouldClose = true, description = "" }, - -- Cola - sprunk = { name = "sprunk", label = "Sprite", weight = 100, type = "item", image = "sprunk.png", unique = true, useable = true, shouldClose = true, description = "" }, - ecola = { name = "ecola", label = "Cola", weight = 100, type = "item", image = "ecola.png", unique = true, useable = true, shouldClose = true, description = "" }, - sprunklight = { name = "sprunklight", label = "Sprite Light", weight = 100, type = "item", image = "sprunklight.png", unique = true, useable = true, shouldClose = true, description = "" }, - ecolalight = { name = "ecolalight", label = "Cola Light", weight = 100, type = "item", image = "ecolalight.png", unique = true, useable = true, shouldClose = true, description = "" }, - -- Juices - orange_juice = { name = "orange_juice", label = "Orange Juice", weight = 100, type = "item", image = "orange_juice.png", unique = true, useable = true, shouldClose = false, description = "" }, - watermelon_juice = { name = "watermelon_juice", label = "Watermelon Juice", weight = 100, type = "item", image = "watermelon_juice.png", unique = true, useable = true, shouldClose = false, description = "" }, - pineapple_juice = { name = "pineapple_juice", label = "Pineapple Juice", weight = 100, type = "item", image = "pineapple_juice.png", unique = true, useable = true, shouldClose = false, description = "" }, - carrot_juice = { name = "carrot_juice", label = "Carrot Juice", weight = 100, type = "item", image = "carrot_juice.png", unique = true, useable = true, shouldClose = false, description = "" }, - tomato_juice = { name = "tomato_juice", label = "Tomato Juice", weight = 100, type = "item", image = "tomato_juice.png", unique = true, useable = true, shouldClose = false, description = "" }, - cranberry_juice = { name = "cranberry_juice", label = "Cranberry Juice", weight = 100, type = "item", image = "cranberry_juice.png", unique = true, useable = true, shouldClose = false, description = "" }, - lemonade_juice = { name = "lemonade_juice", label = "Lemonade Juice", weight = 100, type = "item", image = "lemonade_juice.png", unique = true, useable = true, shouldClose = false, description = "" }, - --bubbletea - bubbletea_strawberry = { name = "bubbletea_strawberry", label = "Strawberry Bubble Tea", weight = 100, type = "item", image = "bubbletea_strawberry.png", unique = true, useable = true, shouldClose = true, description = "" }, - bubbletea_cola = { name = "bubbletea_cola", label = "Cola Bubble Tea", weight = 100, type = "item", image = "bubbletea_cola.png", unique = true, useable = true, shouldClose = true, description = "" }, - bubbletea_green = { name = "bubbletea_green", label = "Green Bubble Tea", weight = 100, type = "item", image = "bubbletea_green.png", unique = true, useable = true, shouldClose = true, description = "" }, - bubbletea_milk = { name = "bubbletea_milk", label = "Milky Bubble Tea", weight = 100, type = "item", image = "bubbletea_milk.png", unique = true, useable = true, shouldClose = true, description = "" }, - bubbletea_caramel = { name = "bubbletea_caramel", label = "Caramel Bubble Tea", weight = 100, type = "item", image = "bubbletea_caramel.png", unique = true, useable = true, shouldClose = true, description = "" }, - -- icecream - berry_icecream = { name = "berry_icecream", label = "Berry Ice cream", weight = 100, type = "item", image = "berry_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - bubblegum_icecream = { name = "bubblegum_icecream", label = "Bubblegum Ice cream", weight = 100, type = "item", image = "bubblegum_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - caramel_icecream = { name = "caramel_icecream", label = "Caramel Ice cream", weight = 100, type = "item", image = "caramel_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - chocolate_icecream = { name = "chocolate_icecream", label = "Chocolate Ice cream", weight = 100, type = "item", image = "chocolate_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - chocolate_strawberry_icecream = { name = "chocolate_strawberry_icecream", label = "Strawberry&Chocolate Ice cream", weight = 100, type = "item", image = "chocolate_strawberry_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - mint_icecream = { name = "mint_icecream", label = "Mint Ice cream", weight = 100, type = "item", image = "mint_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - strawberry_icecream = { name = "strawberry_icecream", label = "Strawberry Ice cream", weight = 100, type = "item", image = "strawberry_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - strawberry_mint_icecream = { name = "strawberry_mint_icecream", label = "Strawberry&Mint Ice cream", weight = 100, type = "item", image = "strawberry_mint_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - strawberry_vanilla_icecream = { name = "strawberry_vanilla_icecream", label = "Strawberry&Vanilla Ice cream", weight = 100, type = "item", image = "strawberry_vanilla_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - vanilla_icecream = { name = "vanilla_icecream", label = "Vanilla Ice cream", weight = 100, type = "item", image = "vanilla_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - vanilla_berry_icecream = { name = "vanilla_berry_icecream", label = "Berry&Vanilla Ice cream", weight = 100, type = "item", image = "vanilla_berry_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - vanilla_mint_icecream = { name = "vanilla_mint_icecream", label = "Mint&Vanilla Ice cream", weight = 100, type = "item", image = "vanilla_mint_icecream.png", unique = true, useable = true, shouldClose = true, description = "" }, - --food craft items - carrot = { name = "carrot", label = "Carrot", weight = 100, type = "item", image = "carrot.png", unique = false, useable = true, shouldClose = true, description = "" }, - cranberry = { name = "cranberry", label = "Cranberry", weight = 100, type = "item", image = "cranberry.png", unique = false, useable = true, shouldClose = true, description = "" }, - boba = { name = "boba", label = "Boba", weight = 100, type = "item", image = "boba.png", unique = false, useable = true, shouldClose = true, description = "" }, - sugar = { name = "sugar", label = "Sugar", weight = 100, type = "item", image = "sugar.png", unique = false, useable = true, shouldClose = true, description = "" }, - blueberry = { name = "blueberry", label = "Blueberry", weight = 100, type = "item", image = "blueberry.png", unique = false, useable = true, shouldClose = true, description = "" }, - mint = { name = "mint", label = "Mint", weight = 100, type = "item", image = "mint.png", unique = false, useable = true, shouldClose = false, description = "" }, - orange = { name = "orange", label = "Orange", weight = 100, type = "item", image = "orange.png", unique = false, useable = true, shouldClose = false, description = "" }, - strawberry = { name = "strawberry", label = "Strawberry", weight = 100, type = "item", image = "strawberry.png", unique = false, useable = true, shouldClose = false, description = "" }, - rice = { name = "rice", label = "Rice", weight = 100, type = "item", image = "rice.png", unique = false, useable = true, shouldClose = true, description = "" }, - nori = { name = "nori", label = "Nori", weight = 100, type = "item", image = "nori.png", unique = false, useable = true, shouldClose = true, description = "" }, - tofu = { name = "tofu", label = "Tofu", weight = 100, type = "item", image = "tofu.png", unique = false, useable = true, shouldClose = true, description = "" }, - onion = { name = "onion", label = "Onion", weight = 500, type = "item", image = "onion.png", unique = false, useable = false, shouldClose = false, description = "" }, - avokado = { name = "avokado", label = "Avokado", weight = 500, type = "item", image = "avokado.png", unique = false, useable = false, shouldClose = false, description = "" }, - raw_sausagepizza = { name = "raw_sausagepizza", label = "Raw Sausage Pizza", weight = 100, type = "item", image = "raw_sucuklu.png", unique = false, useable = true, shouldClose = false, description = "" }, - raw_margaritapizza = { name = "raw_margaritapizza", label = "Raw Margaritalı Pizza", weight = 100, type = "item", image = "raw_margaritapizza.png", unique = false, useable = true, shouldClose = false, description = "" }, - raw_mushroompizza = { name = "raw_mushroompizza", label = "Raw Mushroom Pizza", weight = 100, type = "item", image = "raw_mushroompizza.png", unique = false, useable = true, shouldClose = false, description = "" }, - raw_chickenpizza = { name = "raw_chickenpizza", label = "Raw Chicken Pizza", weight = 100, type = "item", image = "raw_chickenpizza.png", unique = false, useable = true, shouldClose = false, description = "" }, - raw_tunapizza = { name = "raw_tunapizza", label = "Raw Tuna Pizza", weight = 100, type = "item", image = "raw_tunapizza.png", unique = false, useable = true, shouldClose = false, description = "" }, - milk = { name = "milk", label = "Milk", weight = 300, type = "item", image = "milk.png", unique = false, useable = true, shouldClose = true, description = "" }, - rawcoffee = { name = "rawcoffee", label = "Raw Coffee", weight = 100, type = "item", image = "rawcoffee.png", unique = false, useable = true, shouldClose = true, description = "", }, - sausage = { name = 'sausage', label = 'Sausage', weight = 100, type = 'item', image = 'sausage.png', unique = false, useable = true, shouldClose = true, description = '' }, - sausage_brat = { name = 'sausage_brat', label = 'Sausage', weight = 100, type = 'item', image = 'sausage_brat.png', unique = false, useable = true, shouldClose = true, description = '' }, - tuna = { name = 'tuna', label = 'Tuna', weight = 100, type = 'item', image = 'tuna.png', unique = false, useable = true, shouldClose = false, description = '' }, - chicken = { name = 'chicken', label = 'Chicken', weight = 100, type = 'item', image = 'chicken.png', unique = false, useable = true, shouldClose = false, description = '' }, - dough2 = { name = 'dough2', label = 'Dough', weight = 100, type = 'item', image = 'dough2.png', unique = false, useable = true, shouldClose = false, description = '' }, - food_mushroom = { name = 'food_mushroom', label = 'Mushroom', weight = 100, type = 'item', image = 'food_mushroom.png', unique = false, useable = true, shouldClose = true, description = '' }, - spice = { name = "spice", label = "Spice", weight = 100, type = "item", image = "spice.png", unique = false, useable = true, shouldClose = false, description = "" }, - tomatoes = { name = 'tomatoes', label = 'Tomato', weight = 100, type = 'item', image = 'tomatoes.png', unique = false, useable = true, shouldClose = false, description = '' }, - tomatoes2 = { name = 'tomatoes2', label = 'Cut Tomato', weight = 100, type = 'item', image = 'tomatoes2.png', unique = false, useable = true, shouldClose = false, description = '' }, - dough = { name = 'dough', label = 'Dough', weight = 100, type = 'item', image = 'dough.png', unique = false, useable = true, shouldClose = false, description = '' }, - tomatopaste = { name = 'tomatopaste', label = 'Tomatopaste', weight = 100, type = 'item', image = 'tomatopaste.png', unique = false, useable = true, shouldClose = false, description = '' }, - flour = { name = "flour", label = "Flour", weight = 100, type = "item", image = "flour.png", unique = false, useable = true, shouldClose = true, description = "" }, - egg = { name = 'egg', label = 'Eggs', weight = 100, type = 'item', image = 'egg.png', unique = false, useable = true, shouldClose = false, description = '' }, - kiwi = { name = "kiwi", label = "Kiwi", weight = 100, type = "item", image = "kiwi.png", unique = false, useable = true, shouldClose = false, description = "" }, - berry = { name = "berry", label = "Berry", weight = 100, type = "item", image = "berry.png", unique = false, useable = true, shouldClose = false, description = "" }, - lemon = { name = "lemon", label = "Lemon", weight = 100, type = "item", image = "lemon.png", unique = false, useable = true, shouldClose = false, description = "" }, - watermelon = { name = "watermelon", label = "Watermelon", weight = 100, type = "item", image = "watermelon.png", unique = false, useable = true, shouldClose = false, description = "" }, - banana = { name = "banana", label = "Banana", weight = 100, type = "item", image = "banana.png", unique = false, useable = true, shouldClose = false, description = "" }, - cherry = { name = "cherry", label = "Cherry", weight = 100, type = "item", image = "cherry.png", unique = false, useable = true, shouldClose = true, description = "" }, - maracuja = { name = "maracuja", label = "Maracuja", weight = 100, type = "item", image = "maracuja.png", unique = false, useable = true, shouldClose = true, description = "" }, - apple = { name = "apple", label = "Apple", weight = 100, type = "item", image = "apple.png", unique = false, useable = true, shouldClose = true, description = "" }, - burgerbread = { name = "burgerbread", label = "Burger Bread", weight = 100, type = "item", image = "burgerbread.png", unique = false, useable = true, shouldClose = true, description = "" }, - sandwichbread = { name = "sandwichbread", label = "Sandwich Bread", weight = 100, type = "item", image = "sandwichbread.png", unique = false, useable = true, shouldClose = true, description = "" }, - meat = { name = "meat", label = "Raw Meat", weight = 100, type = "item", image = "meat.png", unique = false, useable = true, shouldClose = true, description = "" }, - meat2 = { name = "meat2", label = "Cooked Meat", weight = 100, type = "item", image = "meat2.png", unique = false, useable = true, shouldClose = true, description = "" }, - pickle = { name = "pickle", label = "Pickle", weight = 100, type = "item", image = "pickle.png", unique = false, useable = true, shouldClose = true, description = "" }, - pickle2 = { name = "pickle2", label = "Cut Pickle", weight = 100, type = "item", image = "pickle2.png", unique = false, useable = true, shouldClose = true, description = "" }, - ketchup = { name = "ketchup", label = "Ketchup", weight = 100, type = "item", image = "ketchup.png", unique = false, useable = true, shouldClose = true, description = "" }, - mustard = { name = "mustard", label = "Mustard", weight = 100, type = "item", image = "mustard.png", unique = false, useable = true, shouldClose = true, description = "" }, - nugget = { name = "nugget", label = "Raw Nugget", weight = 100, type = "item", image = "nugget.png", unique = false, useable = true, shouldClose = true, description = "" }, - nugget2 = { name = "nugget2", label = "Cooked Nugget", weight = 100, type = "item", image = "nugget2.png", unique = false, useable = true, shouldClose = true, description = "" }, - lettuce = { name = "lettuce", label = "Lettuce", weight = 100, type = "item", image = "lettuce.png", unique = false, useable = true, shouldClose = true, description = "" }, - lettuce2 = { name = "lettuce2", label = "Cut Lettuce", weight = 100, type = "item", image = "lettuce2.png", unique = false, useable = true, shouldClose = true, description = "" }, - mayonnaise = { name = "mayonnaise", label = "Mayonnaise", weight = 100, type = "item", image = "mayonnaise.png", unique = false, useable = true, shouldClose = true, description = "" }, - potato = { name = "potato", label = "Potato", weight = 100, type = "item", image = "potato.png", unique = false, useable = true, shouldClose = true, description = "" }, - potato2 = { name = "potato2", label = "Cut Potato", weight = 100, type = "item", image = "potato2.png", unique = false, useable = true, shouldClose = true, description = "" }, - grapefruit = { name = "grapefruit", label = "Greyfurt", weight = 100, type = "item", image = "grapefruit.png", unique = false, useable = true, shouldClose = true, description = "" }, - peach = { name = "peach", label = "Peach", weight = 100, type = "item", image = "peach.png", unique = false, useable = true, shouldClose = true, description = "" }, - pear = { name = "pear", label = "Pear", weight = 100, type = "item", image = "pear.png", unique = false, useable = true, shouldClose = true, description = "" }, - plum = { name = "plum", label = "Plum", weight = 100, type = "item", image = "plum.png", unique = false, useable = true, shouldClose = true, description = "" }, - cheese = { name = "cheese", label = "Pizza Cheese", weight = 100, type = "item", image = "cheese.png", unique = false, useable = true, shouldClose = true, description = "" }, - cheese2 = { name = "cheese2", label = "Cut Pizza Cheese", weight = 100, type = "item", image = "cheese2.png", unique = false, useable = true, shouldClose = true, description = "" }, - ice = { name = "ice", label = "Ice", weight = 100, type = "item", image = "ice.png", unique = false, useable = true, shouldClose = true, description = "" }, - lime = { name = "lime", label = "Lime", weight = 100, type = "item", image = "lime.png", unique = false, useable = true, shouldClose = true, description = "" }, - alcohol = { name = "alcohol", label = "Alcohol", weight = 100, type = "item", image = "alcohol.png", unique = false, useable = true, shouldClose = true, description = "" }, - soda = { name = "soda", label = "Soda", weight = 100, type = "item", image = "soda.png", unique = false, useable = true, shouldClose = true, description = "" }, - pineapple = { name = "pineapple", label = "Pineapple", weight = 100, type = "item", image = "pineapple.png", unique = false, useable = true, shouldClose = true, description = "" }, - coconut = { name = "coconut", label = "Coconut", weight = 100, type = "item", image = "coconut.png", unique = false, useable = true, shouldClose = false, description = "" }, - espresso = { name = "espresso", label = "Espresso", weight = 100, type = "item", image = "espresso.png", unique = false, useable = true, shouldClose = false, description = "" }, - grape = { name = 'grape', label = 'Grape', weight = 100, type = 'item', image = 'grape.png', unique = false, useable = true, shouldClose = false, description = "" }, - vanilla = { name = 'vanilla', label = 'Vanilya', weight = 100, type = 'item', image = 'vanilla.png', unique = false, useable = true, shouldClose = false, description = "" }, - pepper = { name = 'pepper', label = 'Pepper', weight = 100, type = 'item', image = 'pepper.png', unique = false, useable = true, shouldClose = false, description = "" }, - noodles = { name = "noodles", label = "Noodle", weight = 100, type = "item", image = "noodles.png", unique = false, useable = false, shouldClose = true, description = "" }, - chocolate = { name = "chocolate", label = "Chocolate", weight = 100, type = "item", image = "chocolate.png", unique = false, useable = false, shouldClose = true, description = "" }, - caramel = { name = "caramel", label = "Caramel", weight = 100, type = "item", image = "caramel.png", unique = false, useable = false, shouldClose = true, description = "" }, - tortilla = { name = "tortilla", label = "Tortilla", weight = 100, type = "item", image = "tortilla.png", unique = false, useable = false, shouldClose = true, description = "" }, - cheddarcheese = { name = "cheddarcheese", label = "Cheddar Cheese", weight = 100, type = "item", image = "cheddarcheese.png", unique = false, useable = false, shouldClose = true, description = "" }, - tacosauce = { name = "tacosauce", label = "Taco Sauce", weight = 100, type = "item", image = "tacosauce.png", unique = false, useable = false, shouldClose = true, description = "" }, - --Food - sandwich = { name = 'sandwich', label = 'Sandwich', weight = 200, type = 'item', image = 'sandwich.png', unique = true, useable = true, shouldClose = true, description = 'Nice bread for your stomach' }, - bento = { name = "bento", label = "Bento Box", weight = 500, type = "item", image = "bento.png", unique = true, useable = true, shouldClose = true, description = "" }, - miso = { name = "miso", label = "Miso Soup", weight = 100, type = "item", image = "miso.png", unique = true, useable = true, shouldClose = true, description = "" }, - spagetti = { name = "spagetti", label = "Spagetti", weight = 100, type = "item", image = "spagetti.png", unique = true, useable = true, shouldClose = true, description = "" }, - salad = { name = "salad", label = "Salad", weight = 100, type = "item", image = "salad.png", unique = true, useable = true, shouldClose = true, description = "" }, - hotdog = { name = "hotdog", label = "Hotdog", weight = 100, type = "item", image = "hotdog.png", unique = true, useable = true, shouldClose = true, description = "" }, - --sushi - avosushi = { name = "avosushi", label = "Avokado Sushi", weight = 100, type = "item", image = "avosushi.png", unique = true, useable = true, shouldClose = true, description = "" }, - tonsushi = { name = "tonsushi", label = "Tuna Sushi", weight = 100, type = "item", image = "tonsushi.png", unique = true, useable = true, shouldClose = true, description = "" }, - --mochi - pmochi = { name = "pmochi", label = "Pink Mochi", weight = 100, type = "item", image = "pmochi.png", unique = true, useable = true, shouldClose = true, description = "" }, - omochi = { name = "omochi", label = "Orange Mochi", weight = 100, type = "item", image = "omochi.png", unique = true, useable = true, shouldClose = true, description = "" }, - gmochi = { name = "gmochi", label = "Green Mochi", weight = 100, type = "item", image = "gmochi.png", unique = true, useable = true, shouldClose = true, description = "" }, - bmochi = { name = "bmochi", label = "Blue Mochi", weight = 100, type = "item", image = "bmochi.png", unique = true, useable = true, shouldClose = true, description = "" }, - --fires - frenchfries = { name = "frenchfries", label = "French fries", weight = 100, type = "item", image = "frenchfries.png", unique = true, useable = true, shouldClose = true, description = "" }, - serratedfrenchfries = { name = "serratedfrenchfries", label = "Serrated French fries", weight = 100, type = "item", image = "serratedfrenchfries.png", unique = true, useable = true, shouldClose = true, description = "" }, - --donut - chocolate_donut = { name = "chocolate_donut", label = "Chocolate Donut", weight = 100, type = "item", image = "chocolate_donut.png", unique = true, useable = true, shouldClose = true, description = "" }, - strawberry_donut = { name = "strawberry_donut", label = "Strawberry Donut", weight = 100, type = "item", image = "strawberry_donut.png", unique = true, useable = true, shouldClose = true, description = "" }, - lemon_donut = { name = "lemon_donut", label = "Lemon Donut", weight = 100, type = "item", image = "lemon_donut.png", unique = true, useable = true, shouldClose = true, description = "" }, - mint_donut = { name = "mint_donut", label = "Mint Donut", weight = 100, type = "item", image = "mint_donut.png", unique = true, useable = true, shouldClose = true, description = "" }, - cherry_donut = { name = "cherry_donut", label = "Cherry Donut", weight = 100, type = "item", image = "cherry_donut.png", unique = true, useable = true, shouldClose = true, description = "" }, - creme_donut = { name = "creme_donut", label = "Cream Donut", weight = 100, type = "item", image = "creme_donut.png", unique = true, useable = true, shouldClose = true, description = "" }, - blueberry_donut = { name = "blueberry_donut", label = "Blueberry Donut", weight = 100, type = "item", image = "blueberry_donut.png", unique = true, useable = true, shouldClose = true, description = "" }, - --Pizza - uwupizza = { name = "uwupizza", label = "Uwu Pizza", weight = 100, type = "item", image = "uwupizza.png", unique = true, useable = true, shouldClose = true, description = "" }, - sausagepizza = { name = "sausagepizza", label = "Sausage Pizza", weight = 100, type = "item", image = "sausagepizza.png", unique = true, useable = true, shouldClose = false, description = "" }, - tunapizza = { name = "tunapizza", label = "Tuna Pizza", weight = 100, type = "item", image = "tunapizza.png", unique = true, useable = true, shouldClose = false, description = "" }, - chickenpizza = { name = "chickenpizza", label = "Chicken Pizza", weight = 100, type = "item", image = "chickenpizza.png", unique = true, useable = true, shouldClose = false, description = "" }, - mushroompizza = { name = "mushroompizza", label = "Mushroom Pizza", weight = 100, type = "item", image = "mushroompizza.png", unique = true, useable = true, shouldClose = false, description = "" }, - margaritapizza = { name = "margaritapizza", label = "Margarita Pizza", weight = 100, type = "item", image = "margaritapizza.png", unique = true, useable = true, shouldClose = false, description = "" }, - --brownies - whitechocolate_brownies = { name = "whitechocolate_brownies", label = "White Chocolate Brownie", weight = 100, type = "item", image = "whitechocolate_brownies.png", unique = true, useable = true, shouldClose = false, description = "" }, - strawberry_brownies = { name = "strawberry_brownies", label = "Strawberry Brownie", weight = 100, type = "item", image = "strawberry_brownies.png", unique = true, useable = true, shouldClose = false, description = "" }, - raspberry_brownies = { name = "raspberry_brownies", label = "Raspberry Brownie", weight = 100, type = "item", image = "raspberry_brownies.png", unique = true, useable = true, shouldClose = false, description = "" }, - classic_brownies = { name = "classic_brownies", label = "Brownie", weight = 100, type = "item", image = "classic_brownies.png", unique = true, useable = true, shouldClose = false, description = "" }, - --Cheesecake - tiramisu = { name = "tiramisu", label = "Tiramisu", weight = 100, type = "item", image = "tiramisu.png", unique = true, useable = true, shouldClose = false, description = "" }, - chocolate_cheesecake = { name = "chocolate_cheesecake", label = "White Chocolate Cheesecake", weight = 100, type = "item", image = "chocolate_cheesecake.png", unique = true, useable = true, shouldClose = false, description = "" }, - lemon_cheesecake = { name = "lemon_cheesecake", label = "Lemon Cheesecake", weight = 100, type = "item", image = "lemon_cheesecake.png", unique = true, useable = true, shouldClose = false, description = "" }, - berry_cheesecake = { name = "berry_cheesecake", label = "Berry Cheesecake", weight = 100, type = "item", image = "berry_cheesecake.png", unique = true, useable = true, shouldClose = false, description = "" }, - strawberry_cheesecake = { name = "strawberry_cheesecake", label = "Strawberry Cheesecake", weight = 100, type = "item", image = "strawberry_cheesecake.png", unique = true, useable = true, shouldClose = false, description = "" }, - --Smoothie - strawberry_smoothie = { name = "strawberry_smoothie", label = "Strawberry Smoothie", weight = 100, type = "item", image = "strawberry_smoothie.png", unique = true, useable = true, shouldClose = false, description = "" }, - kiwi_smoothie = { name = "kiwi_smoothie", label = "Kiwi Smoothie", weight = 100, type = "item", image = "kiwi_smoothie.png", unique = true, useable = true, shouldClose = false, description = "" }, - berry_smoothie = { name = "berry_smoothie", label = "Raspberry Smoothie", weight = 100, type = "item", image = "berry_smoothie.png", unique = true, useable = true, shouldClose = false, description = "" }, - orange_smoothie = { name = "orange_smoothie", label = "Orange Smoothie", weight = 100, type = "item", image = "orange_smoothie.png", unique = true, useable = true, shouldClose = false, description = "" }, - banana_smoothie = { name = "banana_smoothie", label = "Banana Smoothie", weight = 100, type = "item", image = "banana_smoothie.png", unique = true, useable = true, shouldClose = false, description = "" }, - --bagel - bacon_egg_cheese_bagel = { name = "bacon_egg_cheese_bagel", label = "Patırma, Yumurta ve Peynirli Simit", weight = 100, type = "item", image = "bacon_egg_cheese_bagel.png", unique = true, useable = true, shouldClose = false, description = "" }, - salmon_cream_bagel = { name = "salmon_cream_bagel", label = "Salamlı Simit", weight = 100, type = "item", image = "salmon_cream_bagel.png", unique = true, useable = true, shouldClose = false, description = "" }, - --cake - strawberry_cake = { name = "strawberry_cake", label = "Strawberry Cake", weight = 100, type = "item", image = "strawberry_cake.png", unique = true, useable = true, shouldClose = true, description = "" }, - vanilla_cake = { name = "vanilla_cake", label = "Vanilla Cake", weight = 100, type = "item", image = "vanilla_cake.png", unique = true, useable = true, shouldClose = false, description = "" }, - chocolate_cake = { name = "chocolate_cake", label = "Chocolate Cake", weight = 100, type = "item", image = "chocolate_cake.png", unique = true, useable = true, shouldClose = false, description = "" }, - --burger - cheeseburger = { name = "cheeseburger", label = "Cheese Burger", weight = 100, type = "item", image = "cheeseburger.png", unique = true, useable = true, shouldClose = false, description = "" }, - chickenburger = { name = "chickenburger", label = "Chicken Burger", weight = 100, type = "item", image = "chickenburger.png", unique = true, useable = true, shouldClose = false, description = "" }, - burger_2x = { name = "burger_2x", label = "Double Hamburger", weight = 100, type = "item", image = "burger_2x.png", unique = true, useable = true, shouldClose = false, description = "" }, - burger_3x = { name = "burger_3x", label = "Tripple Hamburger", weight = 100, type = "item", image = "burger_3x.png", unique = true, useable = true, shouldClose = false, description = "" }, - burger_4x = { name = "burger_4x", label = "Stack Hamburger", weight = 100, type = "item", image = "burger_4x.png", unique = true, useable = true, shouldClose = false, description = "" }, - --kebab - beef_kebab = { name = "beef_kebab", label = "Beef Kebap", weight = 100, type = "item", image = "beef_kebab.png", unique = true, useable = true, shouldClose = false, description = "" }, - chicken_kebab = { name = "chicken_kebab", label = "Chicken Kebap", weight = 100, type = "item", image = "chicken_kebab.png", unique = true, useable = true, shouldClose = false, description = "" }, - --taco - beeftaco = { name = "beeftaco", label = "Beef Taco", weight = 100, type = "item", image = "beeftaco.png", unique = true, useable = true, shouldClose = false, description = "" }, - chickentaco = { name = "chickentaco", label = "Chicken Taco", weight = 100, type = "item", image = "chickentaco.png", unique = true, useable = true, shouldClose = false, description = "" }, - quesadilla = { name = "quesadilla", label = "Quesadilla", weight = 100, type = "item", image = "quesadilla.png", unique = true, useable = true, shouldClose = false, description = "" }, - --ramen - ramen = { name = "ramen", label = "Ramen", weight = 100, type = "item", image = "ramen.png", unique = true, useable = true, shouldClose = false, description = "" }, - beef_ramen = { name = "beef_ramen", label = "Beef Ramen", weight = 100, type = "item", image = "beef_ramen.png", unique = true, useable = true, shouldClose = false, description = "" }, - chicken_ramen = { name = "chicken_ramen", label = "Chicken Ramen", weight = 100, type = "item", image = "chicken_ramen.png", unique = true, useable = true, shouldClose = false, description = "" }, - duck_ramen = { name = "duck_ramen", label = "Duck Ramen", weight = 100, type = "item", image = "duck_ramen.png", unique = true, useable = true, shouldClose = false, description = "" }, - shrimp_ramen = { name = "shrimp_ramen", label = "Shrimp Ramen", weight = 100, type = "item", image = "shrimp_ramen.png", unique = true, useable = true, shouldClose = false, description = "" }, - vegetable_ramen = { name = "vegetable_ramen", label = "Vegetable Ramen", weight = 100, type = "item", image = "vegetable_ramen.png", unique = true, useable = true, shouldClose = false, description = "" }, - --Soup - pumpkin_soup = { name = "pumpkin_soup", label = "Pumpkin Soup", weight = 100, type = "item", image = "pumpkin_soup.png", unique = true, useable = true, shouldClose = false, description = "" }, - vegetable_soup = { name = "vegetable_soup", label = "Vegetable Soup", weight = 100, type = "item", image = "vegetable_soup.png", unique = true, useable = true, shouldClose = false, description = "" }, - chicken_noodle_soup = { name = "chicken_noodle_soup", label = "Chicken noodle Soup", weight = 100, type = "item", image = "chicken_noodle_soup.png", unique = true, useable = true, shouldClose = false, description = "" }, - creamy_chicken_soup = { name = "creamy_chicken_soup", label = "Creamy Chicken Soup", weight = 100, type = "item", image = "creamy_chicken_soup.png", unique = true, useable = true, shouldClose = false, description = "" }, - tomato_soup = { name = "tomato_soup", label = "Tomato Soupsı", weight = 100, type = "item", image = "tomato_soup.png", unique = true, useable = true, shouldClose = false, description = "" }, - mushroom_soup = { name = "mushroom_soup", label = "Mushroom Soup", weight = 100, type = "item", image = "mushroom_soup.png", unique = true, useable = true, shouldClose = false, description = "" }, - --macaroon - banana_macaroon = { name = "banana_macaroon", label = "Banana Macaroon", weight = 100, type = "item", image = "banana_macaroon.png", unique = true, useable = true, shouldClose = false, description = "" }, - orange_macaroon = { name = "orange_macaroon", label = "Orange Macaroon", weight = 100, type = "item", image = "orange_macaroon.png", unique = true, useable = true, shouldClose = false, description = "" }, - strawberry_macaroon = { name = "strawberry_macaroon", label = "Strawberry Macaroon", weight = 100, type = "item", image = "strawberry_macaroon.png", unique = true, useable = true, shouldClose = false, description = "" }, - mint_macaroon = { name = "mint_macaroon", label = "Mint Macaroon", weight = 100, type = "item", image = "mint_macaroon.png", unique = true, useable = true, shouldClose = false, description = "" }, - blueberry_macaroon = { name = "blueberry_macaroon", label = "Blueberry Macaroon", weight = 100, type = "item", image = "blueberry_macaroon.png", unique = true, useable = true, shouldClose = false, description = "" }, - --muffin - banana_muffin = { name = "banana_muffin", label = "Banana muffin", weight = 100, type = "item", image = "banana_muffin.png", unique = true, useable = true, shouldClose = false, description = "" }, - orange_muffin = { name = "orange_muffin", label = "Orange muffin", weight = 100, type = "item", image = "orange_muffin.png", unique = true, useable = true, shouldClose = false, description = "" }, - strawberry_muffin = { name = "strawberry_muffin", label = "Strawberry muffin", weight = 100, type = "item", image = "strawberry_muffin.png", unique = true, useable = true, shouldClose = false, description = "" }, - mint_muffin = { name = "mint_muffin", label = "Mint muffin", weight = 100, type = "item", image = "mint_muffin.png", unique = true, useable = true, shouldClose = false, description = "" }, - berry_muffin = { name = "berry_muffin", label = "Berry muffin", weight = 100, type = "item", image = "berry_muffin.png", unique = true, useable = true, shouldClose = false, description = "" }, - - --sonstiges - food_bag = { name = "food_bag", label = "Papiertüte", weight = 100, type = "item", image = "food_bag.png", unique = true, useable = true, shouldClose = false, description = "" }, - pdbag = { name = "pdbag", label = "Ausrüstungs Tasche", weight = 1000, type = "item", image = "pdbag.png", unique = true, useable = true, shouldClose = false, description = "" }, +QBShared.Items = { + smg_grip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'grip_attachment.png', + shouldClose = true, + label = 'SMG Griff', + name = 'smg_grip', + }, + coke_small_brick = { + useable = false, + weight = 350, + type = 'item', + unique = true, + description = 'Small package of cocaine, mostly used for deals and takes a lot of space', + image = 'coke_small_brick.png', + shouldClose = true, + label = 'Coke Package', + name = 'coke_small_brick', + }, + veh_armor = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle armor', + image = 'veh_armor.png', + shouldClose = true, + label = 'Armor', + name = 'veh_armor', + }, + eimdalls_uard_read = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Stark und nahrhaft, dieses Brot bewacht den Magen und bereitet dich auf den Genuss der kommenden Speisen vor.', + image = 'HeimdallsGuardBread.png', + shouldClose = true, + label = 'Heimdall\'s Guard Bread', + name = 'heimdalls_guard_bread', + }, + cigkfte = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'cigkfte.png', + shouldClose = true, + label = 'Cigköfte', + name = 'cigkfte', + }, + weapon_autoshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A shotgun capable of rapid continous fire', + image = 'weapon_autoshotgun.png', + label = 'Auto Shotgun', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_autoshotgun', + }, + woodbug = { + useable = false, + weight = 4, + type = 'item', + unique = false, + description = 'Deutsche Borkenkäfer dürfen dies....', + image = 'woodbug.png', + shouldClose = false, + label = 'Borkenkäfer', + name = 'woodbug', + }, + bagruben = { + useable = false, + weight = 2000, + type = 'item', + unique = true, + description = '', + image = 'bagruben.png', + shouldClose = false, + label = 'Sack Zuckerrüben', + name = 'bagruben', + }, + pisman = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'pisman.png', + shouldClose = true, + label = 'Pismaniye', + name = 'pisman', + }, + boomcamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A boom camo for a weapon', + image = 'boomcamo_attachment.png', + shouldClose = true, + label = 'Boom Camo', + name = 'boomcamo_attachment', + }, + cefalexin = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'Cefalexin.png', + shouldClose = true, + label = 'Cefalexin', + name = 'cefalexin', + }, + smg_drum = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'drum_attachment.png', + shouldClose = true, + label = 'SMG Trommelmagazin', + name = 'smg_drum', + }, + lean_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'lean_route.png', + shouldClose = false, + label = 'Lean Route', + name = 'lean_route', + }, + cc_cake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'cc_cake.png', + shouldClose = true, + label = 'Cheesecake', + name = 'cc_cake', + }, + bucket = { + useable = false, + weight = 600, + type = 'item', + unique = false, + description = 'alles im Eimer ^^', + image = 'bucket.png', + shouldClose = false, + label = 'Eimer', + name = 'bucket', + }, + vitaminloesung_500 = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Vitaminlösung 500', + name = 'vitaminloesung_500', + }, + ['kspieß'] = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'kspieß.png', + shouldClose = true, + label = 'Köftespieß', + name = 'kspieß', + }, + plastic = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'RECYCLE! - Greta Thunberg 2019', + image = 'plastic.png', + shouldClose = false, + label = 'Kunststoff', + name = 'plastic', + }, + weapontint_mk2_27 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Red Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Red Tint', + name = 'weapontint_mk2_27', + }, + weed_ak47 = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'A weed bag with 2g AK47', + image = 'weed_baggy.png', + shouldClose = false, + label = 'AK47 2g', + name = 'weed_ak47', + }, + slanted_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'slanted_muzzle_brake.png', + shouldClose = true, + label = 'Slanted Muzzle Brake', + name = 'slanted_muzzle_brake', + }, + fish_fillet = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'fish_fillet.png', + shouldClose = false, + label = 'Fischfilet', + name = 'fish_fillet', + }, + shisha_tobacco = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'shisha_tobacco.png', + shouldClose = false, + label = 'Shisha Tabak', + name = 'shisha_tobacco', + }, + heimdalls_guard_bread = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'HeimdallsGuardBread.png', + shouldClose = true, + label = 'Heimdalls Guard Bread', + name = 'heimdalls_guard_bread', + }, + boxsalad = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'saladbox.png', + shouldClose = false, + label = 'Kiste Eisbergsalat', + name = 'boxsalad', + }, + weapon_railgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A weapon that uses electromagnetic force to launch high velocity projectiles', + name = 'weapon_railgun', + label = 'Railgun', + image = 'weapon_railgun.png', + }, + gg_hunting_campfire = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'gg_hunting_campfire.png', + shouldClose = true, + label = 'Lagerfeuerkit', + name = 'gg_hunting_campfire', + }, + firework1 = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = 'Fireworks', + image = 'firework1.png', + shouldClose = true, + label = 'Space Rocket', + name = 'firework1', + }, + weapontint_mk2_5 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Green Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Green Tint', + name = 'weapontint_mk2_5', + }, + applejuice = { + useable = true, + weight = 400, + type = 'item', + unique = false, + description = '', + image = 'applejuice.png', + shouldClose = false, + label = 'Flasche Apfelsaft', + name = 'applejuice', + }, + cooked_turkey_drum = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cooked_turkey_drum.png', + shouldClose = true, + label = 'gegrillte Putenkeule', + name = 'cooked_turkey_drum', + }, + weapontint_mk2_1 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Gray Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Gray Tint', + name = 'weapontint_mk2_1', + }, + freyas_kiss = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Ein verführerischer und zarter Drink, der die Schönheit der Göttin Freya widerspiegelt.', + image = 'FreyasKiss.png', + shouldClose = true, + label = 'Freya\'s Kiss', + name = 'freyas_kiss', + }, + boxgrapes = { + useable = false, + weight = 400, + type = 'item', + unique = false, + description = '', + image = 'boxgrapes.png', + shouldClose = false, + label = 'Packung Weintrauben', + name = 'boxgrapes', + }, + katzenfutter = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'besser als das was du hier zu essen bekommst XD', + image = 'catfood.png', + shouldClose = true, + label = 'Katzenfutter', + name = 'katzenfutter', + }, + firework2 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Fireworks', + image = 'firework2.png', + shouldClose = true, + label = 'Boomstorm', + name = 'firework2', + }, + koboldkotze = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'Koboldkotze.png', + shouldClose = false, + label = 'Koboldkotze', + name = 'koboldkotze', + }, + handle = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Der Klassiker der Griffe', + image = 'hammerhandle.png', + shouldClose = false, + label = 'Holzgriff', + name = 'handle', + }, + casinochips = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Chips For Casino Gambling', + image = 'casinochips.png', + shouldClose = false, + label = 'Casino Chips', + name = 'casinochips', + }, + aluminumoxide = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Some powder to mix with', + image = 'aluminumoxide.png', + shouldClose = false, + label = 'Aluminium Powder', + name = 'aluminumoxide', + }, + boxorange = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'boxorange.png', + shouldClose = false, + label = 'Kiste Orangen', + name = 'boxorange', + }, + filament = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'filament.png', + shouldClose = false, + label = 'Filament', + name = 'filament', + }, + joint = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Die Friedenspfeife 2.0', + image = 'joint7.png', + shouldClose = true, + label = 'Joint', + name = 'joint', + }, + sugar = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'sugaar.png', + shouldClose = false, + label = 'Packung Zucker ', + name = 'sugar', + }, + smg_defaultclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'clip_attachment.png', + shouldClose = true, + label = 'SMG Magazine', + name = 'smg_defaultclip', + }, + table = { + useable = true, + weight = 400, + type = 'item', + unique = false, + description = '', + image = 'table.png', + shouldClose = true, + label = 'Klapptisch', + name = 'table', + }, + soocer = { + useable = false, + weight = 400, + type = 'item', + unique = true, + description = '', + image = 'soccer.png', + shouldClose = false, + label = 'Fußball', + name = 'soocer', + }, + ems_card = { + useable = true, + weight = 10, + type = 'item', + unique = true, + description = '', + image = 'police_card.png', + shouldClose = true, + label = 'MD Dienstausweis', + name = 'ems_card', + }, + gardenshovel = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '', + image = 'gardenshovel.png', + shouldClose = false, + label = 'Gartenschaufel', + name = 'gardenshovel', + }, + weapon_molotov = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A crude bomb made of a bottle filled with a flammable liquid and fitted with a wick for lighting', + name = 'weapon_molotov', + label = 'Molotov', + image = 'weapon_molotov.png', + }, + weapon_firework = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A device containing gunpowder and other combustible chemicals that causes a spectacular explosion when ignited', + name = 'weapon_firework', + label = 'Firework Launcher', + image = 'weapon_firework.png', + }, + empty_evidence_bag = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Used a lot to keep DNA from blood, bullet shells and more', + image = 'evidence.png', + shouldClose = false, + label = 'Empty Evidence Bag', + name = 'empty_evidence_bag', + }, + weapon_crossbow = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = '', + image = 'weapon_crossbow.png', + shouldClose = true, + label = 'Jagd Armbrust', + name = 'weapon_crossbow', + }, + apple = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_848-removebg-preview.png', + shouldClose = false, + label = 'Apfel', + name = 'apple', + }, + weapontint_5 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'LSPD Weapon Tint', + image = 'weapontint_lspd.png', + shouldClose = true, + label = 'LSPD Tint', + name = 'weapontint_5', + }, + weapontint_mk2_9 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Red Contrast Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Red Contrast Tint', + name = 'weapontint_mk2_9', + }, + blotter_paper = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Das Papier, das dich nicht nur trocknen lässt, sondern auch deine Gedanken', + image = 'paperroll.png', + shouldClose = false, + label = 'Blotterpapier', + name = 'blotter_paper', + }, + weapon_combatshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Combatshotgun', + image = 'weapon_combatshotgun.png', + label = 'Beanbag Shotgun', + ammotype = 'AMMO_BEANBAG', + name = 'weapon_combatshotgun', + }, + xtcbaggy = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'Pop those pills baby', + image = 'xtc_baggy.png', + shouldClose = true, + label = 'Bag of XTC', + name = 'xtcbaggy', + }, + weapon_bzgas = { + useable = false, + weight = 500, + type = 'weapon', + unique = false, + description = 'Tränen aus der Dose', + name = 'weapon_bzgas', + label = 'Tränengas Granate', + image = 'bz_gas.png', + }, + pistol_compensator = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'comp_attachment.png', + shouldClose = true, + label = 'Pistolen Kompensator', + name = 'pistol_compensator', + }, + tablet = { + useable = false, + weight = 2000, + type = 'item', + unique = false, + description = 'Expensive tablet', + image = 'tablet.png', + shouldClose = true, + label = 'Tablet', + name = 'tablet', + }, + kennzeichen_tool = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'kennzeichen_tool.png', + shouldClose = true, + label = 'Kennzeichen', + name = 'kennzeichen_tool', + }, + lysergic_acid = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Der geheime VIP-Zugang zu einer anderen Realität', + image = 'acid.png', + shouldClose = false, + label = 'Lysergsäure', + name = 'lysergic_acid', + }, + weapon_flashlight = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Heller als Du ^^', + name = 'weapon_flashlight', + label = 'Flashlight', + image = 'weapon_flashlight.png', + }, + weapon_dbshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A shotgun with two parallel barrels, allowing two single shots to be fired in quick succession', + image = 'weapon_dbshotgun.png', + label = 'Double-barrel Shotgun', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_dbshotgun', + }, + aldurs_ight_lixir = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Ein strahlendes und belebendes Getränk, das den leuchtenden Geist Baldurs einfängt.', + image = 'BaldursLightElixir.png', + shouldClose = true, + label = 'Baldur\'s Light Elixir', + name = 'baldurs_light_elixir', + }, + ev_coolant = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'ev_coolant.png', + shouldClose = true, + label = 'EV_Kühlkit', + name = 'ev_coolant', + }, + codeine_syrup = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Der Sirup, der dich von „A“ nach „Z“ schickt – aber ohne Zwischenstopps', + image = 'crackmixingagent.png', + shouldClose = false, + label = 'Codein-Sirup', + name = 'codeine_syrup', + }, + blood_100 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'blood_100.png', + shouldClose = true, + label = 'Blut (100ml)', + name = 'blood_100', + }, + weapon_carbinerifle_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Carbine Rifle MK2', + image = 'screenshot_455-removebg-preview.png', + label = 'Softair Gewehr', + ammotype = 'AMMO_RIFLE', + name = 'weapon_carbinerifle_mk2', + }, + dackelk = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'Dackelklatscher.png', + shouldClose = false, + label = 'Dackelklatscher', + name = 'dackelk', + }, + hors_hunder_ings = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Knusprig, würzig und mit einem feurigen Biss – diese Flügel schlagen ein wie ein Donnerblitz.', + image = 'ThorsThunderWings.png', + shouldClose = true, + label = 'Thor\'s Thunder Wings', + name = 'hors_hunder_ings', + }, + corn_cob = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'corn_cob.png', + shouldClose = true, + label = 'Maiskolben', + name = 'corn_cob', + }, + leberkas_semmal = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Mehr Fleisch als Worte – des is koa Semmel, des is a Lebensgefühl!', + image = 'leberkas_semmal.png', + shouldClose = true, + label = 'Leberkas Semmal', + name = 'leberkas_semmal', + }, + cc_kaffe = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'cc_kaffe.png', + shouldClose = true, + label = 'Kaffee', + name = 'cc_kaffe', + }, + okis_rickster_unch = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Unberechenbar und aufregend, dieser Mocktail hält eine erfrischende Überraschung parat.', + image = 'LokisTricksterPunch.png', + shouldClose = true, + label = 'Loki\'s Trickster Punch', + name = 'lokis_trickster_punch', + }, + rifle_ammo = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'schnelles Peng', + image = 'rifle_ammo.png', + shouldClose = true, + label = 'Gewehr Munition', + name = 'rifle_ammo', + }, + big_bottle_lemonade = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = '', + image = 'big_bottle_lemonade.png', + shouldClose = true, + label = 'große Flasche Sprunk', + name = 'big_bottle_lemonade', + }, + wood = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Ich und mein Holz....', + image = 'wood.png', + shouldClose = false, + label = 'Holz', + name = 'wood', + }, + popcorn = { + useable = true, + weight = 150, + type = 'item', + unique = true, + description = 'Frisch aufgepopptes Popcorn ', + image = 'ChatGPT Image 26. Apr. 2025, 17_05_56-min.png', + shouldClose = true, + label = 'Popcorn', + name = 'popcorn', + }, + weapon_combatmg_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Combatmg MK2', + image = 'weapon_combatmg_mk2.png', + label = 'Combat MG Mk II', + ammotype = 'AMMO_MG', + name = 'weapon_combatmg_mk2', + }, + smg_extendedclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'smg_extendedclip.png', + shouldClose = true, + label = 'erw. SMG Magazin', + name = 'smg_extendedclip', + }, + weapon_stungun = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'manchmal ist es einfach praktischer, jemanden mit Stromschlägen zu „überzeugen“, anstatt ein vernünftiges Gespräch zu führen.', + name = 'weapon_stungun', + label = 'Taser X6', + image = 'weapon_stungun.png', + }, + weapontint_mk2_3 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic White Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic White Tint', + name = 'weapontint_mk2_3', + }, + fries_with_dip = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Knusprig goldene Pommes, serviert im kleinen Metallkorb – dazu ein cremiger Dip im stilechten Mini-Metalleimer.', + image = 'ChatGPT_Image_27._Apr._2025__12_41_35-removebg-preview.png', + shouldClose = true, + label = 'Pommes mit Dip ', + name = 'fries_with_dip', + }, + comp_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A compensator for a weapon', + image = 'comp_attachment.png', + shouldClose = true, + label = 'Compensator', + name = 'comp_attachment', + }, + weapon_snowball = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A ball of packed snow, especially one made for throwing at other people for fun', + name = 'weapon_snowball', + label = 'Snowball', + image = 'weapon_snowball.png', + }, + saldprezels = { + useable = true, + weight = 150, + type = 'item', + unique = true, + description = 'Knusprige Mini-Salzbrezeln', + image = 'ChatGPT_Image_27._Apr._2025__00_12_06-removebg-preview.png', + shouldClose = true, + label = 'Salzbrezeln', + name = 'saldprezels', + }, + frittenwbm = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'Fritten_wie_bei_Muttern.png', + shouldClose = false, + label = 'Fritten wie bei Muttern', + name = 'frittenwbm', + }, + holoscope_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A holo scope for a weapon', + image = 'holoscope_attachment.png', + shouldClose = true, + label = 'Holo Scope', + name = 'holoscope_attachment', + }, + weapon_pumpshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Der Türöffner für Cops, wenn Klopfen keine Option mehr ist.', + image = 'screenshot_399-removebg-preview.png', + label = 'Banalli Schrotflinte', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_pumpshotgun', + }, + meth = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'A baggie of Meth', + image = 'meth_baggy.png', + shouldClose = true, + label = 'Meth', + name = 'meth', + }, + weapon_assaultrifle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Russlands Antwort auf jedes Problem: zuverlässig, unkaputtbar und schießt sogar noch, wenn Wodka drüber gekippt wird.', + image = 'weapon_assaultrifle.png', + label = 'AK 75', + ammotype = 'AMMO_RIFLE', + name = 'weapon_assaultrifle', + }, + narketan = { + useable = true, + weight = 250, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Narketan', + name = 'narketan', + }, + aktexyz = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'aktexyz.png', + shouldClose = false, + label = 'Akte XYZ', + name = 'aktexyz', + }, + snp_ammo = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Ammo for Sniper Rifles', + image = 'snp_ammo.png', + shouldClose = true, + label = 'Sniper Munition', + name = 'snp_ammo', + }, + orangejuice = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'orangejuice.png', + shouldClose = false, + label = 'Flasche Orangensaft', + name = 'orangejuice', + }, + lsd_papers = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Miniatur-Kunstwerke, die dir den Kopf verdrehen – aber hey, zumindest sieht alles schöner aus.', + image = 'lsd.png', + shouldClose = true, + label = 'LSD-Papes', + name = 'lsd_papers', + }, + cigbox = { + useable = true, + weight = 400, + type = 'item', + unique = true, + description = '', + image = 'cigbox.png', + shouldClose = false, + label = 'Zigarrenkiste', + name = 'cigbox', + }, + billokaffee = { + useable = true, + weight = 80, + type = 'item', + unique = false, + description = 'Die Schande Kolumbiens', + image = 'billokaffee.png', + shouldClose = true, + label = 'Billo Kaffee', + name = 'billokaffee', + }, + espresso = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Hiernach bist du safe wach ^^', + image = 'espresso.png', + shouldClose = true, + label = 'Tasse Espresso', + name = 'espresso', + }, + rawmeat = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'rawmeat.png', + shouldClose = false, + label = 'rohes Fleisch', + name = 'rawmeat', + }, + weapon_ball = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A solid or hollow spherical or egg-shaped object that is kicked, thrown, or hit in a game', + image = 'weapon_ball.png', + label = 'Ball', + ammotype = 'AMMO_BALL', + name = 'weapon_ball', + }, + filter_papers = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Der Joint ist dein Freund und am besten mit Filter', + image = 'filter_papers.png', + shouldClose = false, + label = 'Filtertips', + name = 'filter_papers', + }, + ammo_grenadelauncher = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Munition für den Granatwerfer', + image = 'grenade_launcher_tokyo_marui_m320a1_6_-removebg-preview.png', + shouldClose = true, + label = 'AMMO_GRENADELAUNCHER', + name = 'ammo_grenadelauncher', + }, + novalmin = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'Novalmin.png', + shouldClose = true, + label = 'Novalmin', + name = 'novalmin', + }, + weed_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'weed_route.png', + shouldClose = false, + label = 'Weed Route', + name = 'weed_route', + }, + weed_ak47_seed = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A weed seed of AK47', + image = 'weed_seed.png', + shouldClose = true, + label = 'AK47 Seed', + name = 'weed_ak47_seed', + }, + ['5-fach_impfung_hund'] = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'hundeimpfstoff.png', + shouldClose = true, + label = '5-fach Impfung Hund', + name = '5-fach_impfung_hund', + }, + ['3-fach_impfung_katze'] = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'katzenimpfstoff.png', + shouldClose = true, + label = '3-fach Impfung Katze', + name = '3-fach_impfung_katze', + }, + creditcard = { + useable = false, + weight = 0, + type = 'item', + unique = true, + description = 'Ich brauch Geld', + image = 'creditcard.png', + shouldClose = true, + label = 'Bankkarte', + name = 'creditcard', + }, + weapon_colbaton = { + useable = true, + weight = 100, + type = 'weapon', + unique = true, + description = '', + image = 'weapon_colbaton.png', + shouldClose = true, + label = 'Teleskopschlagstock', + name = 'weapon_colbaton', + }, + cooked_bbq_ribeye = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_bbq_ribeye.png', + shouldClose = true, + label = 'gegrilltes Ribeye Steak', + name = 'cooked_bbq_ribeye', + }, + paper = {}, + voltaren_salbenverband = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'salbenverband.png', + shouldClose = true, + label = 'Voltaren Salbenverband', + name = 'voltaren_salbenverband', + }, + njords_sea_platter = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'NjordsSeaPlatter.png', + shouldClose = true, + label = 'Njords Sea Platter', + name = 'njords_sea_platter', + }, + baldurslightelixir = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Ein strahlendes und belebendes Getränk, das den leuchtenden Geist Baldurs einfängt.', + image = 'BaldursLightElixir.png', + shouldClose = true, + label = 'Baldurs Light Elixir', + name = 'baldurslightelixir', + }, + weapon_combatpdw = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Ab Werk leise', + image = 'weapon_combatpdw.png', + shouldClose = true, + label = 'Zig MPX', + name = 'weapon_combatpdw', + }, + boxapples = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'applebox.png', + shouldClose = false, + label = 'Kiste Äpfel', + name = 'boxapples', + }, + weapontint_mk2_32 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Red and Yellow Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Red and Yellow Tint', + name = 'weapontint_mk2_32', + }, + heavy_duty_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'heavy_duty_muzzle_brake.png', + shouldClose = true, + label = 'HD Muzzle Brake', + name = 'heavy_duty_muzzle_brake', + }, + rare_earths = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'rare_earths.png', + shouldClose = false, + label = 'seltene Erden', + name = 'rare_earths', + }, + cay = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Türkischer Tee', + image = 'Cay.png', + shouldClose = true, + label = 'Cay', + name = 'cay', + }, + weapon_specialcarbine_mk2 = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Wpecialcarbine MK2', + image = 'highteamspecialcarbinemk2.png', + label = 'Special Carbine Mk II', + ammotype = 'AMMO_RIFLE', + name = 'weapon_specialcarbine_mk2', + }, + weed_nutrition = { + useable = true, + weight = 2000, + type = 'item', + unique = false, + description = 'Plant nutrition', + image = 'weed_nutrition.png', + shouldClose = true, + label = 'Plant Fertilizer', + name = 'weed_nutrition', + }, + potatobag = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'potatobag.png', + shouldClose = false, + label = 'Sack Kartoffeln', + name = 'potatobag', + }, + blood_750 = { + useable = true, + weight = 750, + type = 'item', + unique = false, + description = '', + image = 'blood_750.png', + shouldClose = true, + label = 'Blut (750ml)', + name = 'blood_750', + }, + boxwater = { + useable = false, + weight = 2000, + type = 'item', + unique = true, + description = '', + image = 'boxwater.png', + shouldClose = false, + label = 'Kiste Wasser', + name = 'boxwater', + }, + weapon_petrolcan = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A robust liquid container made from pressed steel', + image = 'weapon_petrolcan.png', + label = 'Petrol Can', + ammotype = 'AMMO_PETROLCAN', + name = 'weapon_petrolcan', + }, + weapon_marksmanpistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A very accurate small firearm designed to be held in one hand', + image = 'weapon_marksmanpistol.png', + label = 'Marksman Pistol', + ammotype = 'AMMO_PISTOL', + name = 'weapon_marksmanpistol', + }, + vehicle_wheels = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'vehicle_wheels.png', + shouldClose = true, + label = 'Felgen', + name = 'vehicle_wheels', + }, + nvscope_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A night vision scope for a weapon', + image = 'nvscope_attachment.png', + shouldClose = true, + label = 'Night Vision Scope', + name = 'nvscope_attachment', + }, + kbrotmcr = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'Koboldbrot_mit_Cheddar.png', + shouldClose = false, + label = 'Koboldbrot mit Cheedar', + name = 'kbrotmcr', + }, + cooked_bbq_sausages = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_bbq_sausages.png', + shouldClose = true, + label = 'gegrillte Bratwurst', + name = 'cooked_bbq_sausages', + }, + hors_hunder_torm = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Ein spritziges Getränk mit einem überraschenden Kick, das wie ein Donnerschlag erfrischt.', + image = 'ThorsThunderStorm.png', + shouldClose = true, + label = 'Thor\'s Thunder Storm (alkoholfrei)', + name = 'thors_thunder_storm', + }, + poison = { + useable = false, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'poison.png', + shouldClose = false, + label = 'Kugelfisch Gift', + name = 'poison', + }, + weapon_pistol_mk2 = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An upgraded small firearm designed to be held in one hand', + image = 'weapon_pistol_mk2.png', + label = 'Klog 19', + ammotype = 'AMMO_PISTOL', + name = 'weapon_pistol_mk2', + }, + sniper_suppressor = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'suppressor_attachment.png', + shouldClose = true, + label = 'Sniper Schalldämpfer', + name = 'sniper_suppressor', + }, + green_phone = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '„Du bist nicht oberflächlich. Du hast einfach ein teures Telefon.“', + image = 'green_phone.png', + shouldClose = false, + label = 'iFruit 12XR Grün', + name = 'green_phone', + }, + veh_tint = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Install vehicle tint', + image = 'veh_tint.png', + shouldClose = true, + label = 'Tints', + name = 'veh_tint', + }, + bw_cupcake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'bw_cupcake.png', + shouldClose = true, + label = 'Black & White Cupcake', + name = 'bw_cupcake', + }, + dagger_blade = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'So klein, du siehst sie fast nicht – aber sie hinterlässt Eindruck', + image = 'P1026942-3-scaled-removebg-preview.png', + shouldClose = false, + label = 'Dolchklinge', + name = 'dagger_blade', + }, + vehicletracker = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'vehicletracker.png', + shouldClose = true, + label = 'GPS Modul', + name = 'vehicletracker', + }, + falafel = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Falafel mit Joghurtsauce', + image = 'Falafel.png', + shouldClose = true, + label = 'Falafel', + name = 'falafel', + }, + parachute = { + useable = true, + weight = 30000, + type = 'item', + unique = true, + description = 'The sky is the limit! Woohoo!', + image = 'parachute.png', + shouldClose = true, + label = 'Parachute', + name = 'parachute', + }, + redwoodpack = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'redwoodpack.png', + shouldClose = true, + label = 'Packung Redwood Zigaretten', + name = 'redwoodpack', + }, + steel_ingots = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Hier trifft pure Masse auf unendliches Potenzial.', + image = 'steel_ingot.png', + shouldClose = false, + label = 'Stahlbarren', + name = 'steel_ingots', + }, + tranexamsaure = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'tranexamsaure.png', + shouldClose = true, + label = 'Tranexamsäure', + name = 'tranexamsaure', + }, + cup_lemonade = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cup_lemonade.png', + shouldClose = true, + label = 'Becher Sprunk', + name = 'cup_lemonade', + }, + raw_ribs = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'raw_ribs.png', + shouldClose = true, + label = 'rohe Rippchen', + name = 'raw_ribs', + }, + cc_cino = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'cc_cino.png', + shouldClose = true, + label = 'Cappuccino', + name = 'cc_cino', + }, + ifaks = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'ifaks for healing and a complete stress remover.', + image = 'ifaks.png', + shouldClose = true, + label = 'ifaks', + name = 'ifaks', + }, + pizza_piece = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'Ein Stück Glück auf deinem Teller – Genieße unser köstliches Stück Pizza!', + name = 'pizza_piece', + label = 'Stück Pizza', + shouldClose = true, + }, + ecola_zero_flasche = { + useable = true, + weight = 80, + type = 'item', + unique = false, + description = 'Flasche Cola', + image = 'ecolazerobottle.png', + shouldClose = true, + label = 'E-Cola Zero Flasche', + name = 'ecola_zero_flasche', + }, + water_bottle = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Gerüchte sagen, es stammt aus einem Gletscher – wahrscheinlich eher aus dem Hahn hinterm Werkstor.', + image = 'wasserflasche.png', + shouldClose = true, + label = 'Wasser Flasche ', + name = 'water_bottle', + }, + hotdog = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_691-removebg-preview.png', + shouldClose = true, + label = 'Hot Dog', + name = 'hotdog', + }, + milk = { + useable = true, + weight = 400, + type = 'item', + unique = false, + description = 'Muuuuhhhh ', + image = 'milk.png', + shouldClose = true, + label = 'Packung Milch', + name = 'milk', + }, + kolonya = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'Duftwasser - Geschenk für Gäste', + image = 'Kolonya.png', + shouldClose = true, + label = 'Kolonya', + name = 'kolonya', + }, + sprunk = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', + image = 'sprunk.png', + shouldClose = true, + label = 'Sprunk Softdrink', + name = 'sprunk', + }, + advancedlockpick = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'If you lose your keys a lot this is very useful... Also useful to open your beers', + image = 'advancedlockpick.png', + shouldClose = true, + label = 'Advanced Lockpick', + name = 'advancedlockpick', + }, + glucoseg40 = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'glucoseg40.png', + shouldClose = true, + label = 'Glucose 40%', + name = 'glucoseg40', + }, + drill = { + useable = false, + weight = 0, + type = 'item', + unique = true, + description = 'The real deal...', + image = 'drill.png', + shouldClose = false, + label = 'Bohrmaschine', + name = 'drill', + }, + mmorgenlicht = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'mmorgenlicht.png', + shouldClose = false, + label = 'Meiers Morgenlicht', + name = 'mmorgenlicht', + }, + riverwater = { + useable = false, + weight = 3000, + type = 'item', + unique = true, + description = '', + image = 'kanister.png', + shouldClose = false, + label = 'Kanister mit Wasser', + name = 'riverwater', + }, + weapon_heavysniper_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Heavysniper MK2', + image = 'weapon_heavysniper_mk2.png', + label = 'Heavy Sniper Mk II', + ammotype = 'AMMO_SNIPER', + name = 'weapon_heavysniper_mk2', + }, + repair_kit = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'Für Schnelle & Kleinere Reparaturen ', + image = 'repair_kit.png', + shouldClose = true, + label = 'Werkzeug', + name = 'repair_kit', + }, + weapontint_mk2_13 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Pink Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Pink Tint', + name = 'weapontint_mk2_13', + }, + shoe = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'ein Schuh an Kop .... oder so', + image = 'shoe.png', + shouldClose = false, + label = 'Schuh', + name = 'shoe', + }, + revolver_barrel = { + useable = false, + weight = 250, + type = 'item', + unique = false, + description = 'Revolver-Abzug: Ein kurzer Zug, der großen Knall bringt', + image = 'axehandle.png', + shouldClose = false, + label = 'Revolverlauf', + name = 'revolver_barrel', + }, + gg_salt_block_01 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'gg_salt_block_01.png', + shouldClose = true, + label = 'Salzblock', + name = 'gg_salt_block_01', + }, + weapontint_mk2_29 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Blue Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Blue Tint', + name = 'weapontint_mk2_29', + }, + weapontint_mk2_30 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic White & Aqua Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic White & Aqua Tint', + name = 'weapontint_mk2_30', + }, + ifs_olden_arvest = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Eine goldene Ernte, die Sif selbst gesegnet haben könnte – perfekt für eine herzhafte Mahlzeit.', + image = 'SifsGoldenHarvest.png', + shouldClose = true, + label = 'Sif\'s Golden Harvest', + name = 'sifs_olden_harvest', + }, + weapon_heavypistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Wenn die Klog nicht mehr reicht.', + image = 'screenshot_405-removebg-preview.png', + label = 'FM 510', + ammotype = 'AMMO_PISTOL', + name = 'weapon_heavypistol', + }, + veh_interior = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle interior', + image = 'veh_interior.png', + shouldClose = true, + label = 'Interior', + name = 'veh_interior', + }, + suspension_parts = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'suspension_parts.png', + shouldClose = true, + label = 'Premium Fahrwerksteile', + name = 'suspension_parts', + }, + irishexit = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'irish_exit.png', + shouldClose = false, + label = 'Irish Exit', + name = 'irishexit', + }, + precision_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'precision_muzzle_brake.png', + shouldClose = true, + label = 'Precision Muzzle Brake', + name = 'precision_muzzle_brake', + }, + weapon_poolcue = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A stick used to strike a ball, usually the cue ball (or other things)', + name = 'weapon_poolcue', + label = 'Billardque', + image = 'weapon_poolcue.png', + }, + tactical_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brakee for a weapon', + image = 'tactical_muzzle_brake.png', + shouldClose = true, + label = 'Tactical Muzzle Brake', + name = 'tactical_muzzle_brake', + }, + weapon_gadgetpistol = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Gadgetpistol', + image = 'weapon_gadgetpistol.png', + label = 'Perico Pistol', + ammotype = 'AMMO_PISTOL', + name = 'weapon_gadgetpistol', + }, + weapon_fireextinguisher = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A portable device that discharges a jet of water, foam, gas, or other material to extinguish a fire', + name = 'weapon_fireextinguisher', + label = 'Fire Extinguisher', + image = 'weapon_fireextinguisher.png', + }, + jelly_beans = { + useable = true, + weight = 150, + type = 'item', + unique = true, + description = 'Bunte, kleine Köstlichkeiten mit knackiger Hülle und fruchtig-süßem Kern – ein Farbtupfer voller Geschmack.', + image = 'file_00000000007861f7963805e1f6fecfc5-removebg-preview.png', + shouldClose = true, + label = 'Jelly Beans', + name = 'jelly_beans', + }, + marshal_card = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'police_card.png', + shouldClose = false, + label = 'Marshal Card', + name = 'marshal_card', + }, + gg_boar_tusk_03 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_boar_tusk_03.png', + shouldClose = true, + label = 'Makelloser Eberzahn', + name = 'gg_boar_tusk_03', + }, + offroad_tyres = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'offroad_tyres.png', + shouldClose = true, + label = 'Reifen offroad', + name = 'offroad_tyres', + }, + cottoncandy = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_693-removebg-preview.png', + shouldClose = true, + label = 'Zuckerwatte', + name = 'cottoncandy', + }, + metacam = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'Metacam.png', + shouldClose = true, + label = 'Metacam', + name = 'metacam', + }, + gg_captured_chickenhawk = { + useable = true, + weight = 5000, + type = 'item', + unique = true, + description = '', + image = 'gg_captured_chickenhawk.png', + shouldClose = true, + label = 'Gefangener Falke', + name = 'gg_captured_chickenhawk', + }, + smg_scope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'holoscope_attachment.png', + shouldClose = true, + label = 'SMG Visier', + name = 'smg_scope', + }, + weapon_batton = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Ein Lauf auf Stahl mit einer hohen Genauigkeit ', + image = 'weapon_batton.png', + shouldClose = false, + label = 'Waffenlauf Lang', + name = 'weapon_batton', + }, + kakao2 = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Eine Tasse heiße Schokolade ist wie eine warme Umarmung von innen – süß, tröstlich und immer zur Stelle, wenn die Welt zu kalt wird.', + image = 'kakao2.png', + shouldClose = true, + label = 'Tasse Heiße Schokolade', + name = 'kakao2', + }, + gazebo = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = '', + image = 'gazebo.png', + shouldClose = true, + label = 'Pavillon', + name = 'gazebo', + }, + slushi = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'Erfrischung pur in jedem Schluck – Gönn dir deinen Slushi!', + image = 'slushi.png', + shouldClose = true, + label = 'Slushi', + name = 'slushi', + }, + certificate = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Certificate that proves you own certain stuff', + image = 'certificate.png', + shouldClose = true, + label = 'Certificate', + name = 'certificate', + }, + plank = { + useable = false, + weight = 600, + type = 'item', + unique = false, + description = 'Brett vorm Kopf oder so...', + image = 'plank.png', + shouldClose = false, + label = 'Brett ', + name = 'plank', + }, + weapontint_mk2_16 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Green & Purple Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Green & Purple Tint', + name = 'weapontint_mk2_16', + }, + odins_nuesse = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'Diese kräftige Mischung aus Nüssen symbolisiert die Weisheit und Stärke des Göttervaters. Voller Geschmack und Energie, ideal, um Körper und Geist zu nähren.', + image = 'Odins_nuesse.png', + shouldClose = true, + label = 'Odins Nüsse', + name = 'Odins_nuesse', + }, + boxmilk = { + useable = false, + weight = 1200, + type = 'item', + unique = true, + description = '', + image = 'boxmilk.png', + shouldClose = false, + label = 'Karton mit Milch', + name = 'boxmilk', + }, + hopfen = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'hopfen.png', + shouldClose = false, + label = 'Hopfen', + name = 'hopfen', + }, + gg_hunting_arrowammo = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'gg_hunting_arrowammo.png', + shouldClose = true, + label = 'Armbrust Pfeile', + name = 'gg_hunting_arrowammo', + }, + bb_cupcake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'bb_cupcake.png', + shouldClose = true, + label = 'Blueberry Cupcake', + name = 'bb_cupcake', + }, + orange_o_tang_flasche = { + useable = true, + weight = 80, + type = 'item', + unique = false, + description = 'Flasche Orangen Limo', + image = 'orange_o_tang_flasche.png', + shouldClose = true, + label = 'Orange O Tang Flasche', + name = 'orange_o_tang_flasche', + }, + veh_plates = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Install vehicle plates', + image = 'veh_plates.png', + shouldClose = true, + label = 'Plates', + name = 'veh_plates', + }, + crack_baggy = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'To get happy faster', + image = 'crack_baggy.png', + shouldClose = true, + label = 'Bag of Crack', + name = 'crack_baggy', + }, + cotton = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cotton.png', + shouldClose = false, + label = 'Baumwolle', + name = 'cotton', + }, + weapon_revolver_mk2 = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'da Violence', + image = 'screenshot_419-removebg-preview.png', + label = 'Blood in and out Gun', + ammotype = 'AMMO_PISTOL', + name = 'weapon_revolver_mk2', + }, + performance_part = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'performance_part.png', + shouldClose = true, + label = 'Performance Kit', + name = 'performance_part', + }, + kevlar = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'kevlar.png', + shouldClose = false, + label = 'Kevlar ', + name = 'kevlar', + }, + salep = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = ' Zimt Heißgetränk', + image = 'salep.png', + shouldClose = true, + label = 'Salep', + name = 'salep', + }, + weapon_wrench = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A tool used for gripping and turning nuts, bolts, pipes, etc', + name = 'weapon_wrench', + label = 'Wrench', + image = 'weapon_wrench.png', + }, + epinephrine = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'epi_pen.png', + shouldClose = true, + label = 'Adrenalinspritze', + name = 'epinephrine', + }, + sawdust = { + useable = false, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'sawdust.png', + shouldClose = false, + label = 'Sägemehl', + name = 'sawdust', + }, + pussycat = { + useable = true, + weight = 40, + type = 'item', + unique = false, + description = 'Für die einsamen Nächte.', + image = 'pussycat.png', + shouldClose = true, + label = 'Pussycat', + name = 'pussycat', + }, + hotdog_deluxe = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Der König unter den Hotdogs', + image = 'hotdogdeluxe-removebg-preview.png', + shouldClose = true, + label = 'Deluxe Hotdog', + name = 'hotdog_deluxe', + }, + vitaminloesung_750 = { + useable = true, + weight = 750, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Vitaminlösung 750', + name = 'vitaminloesung_750', + }, + cheese_burger = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'Ein flauschiges Brötchen, ein saftiges Patty und eine Scheibe Käse, die alles zusammenhält wie der beste Kumpel auf einer Party. Klein, rund, glücklich – genau wie du nach dem ersten Bissen.', + image = 'cheese_burger.png', + shouldClose = true, + label = 'Bacon Cheese Burger', + name = 'cheese_burger', + }, + vodka = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Nach 4 Flaschen redet man Russisch.', + image = 'vodka.png', + shouldClose = true, + label = 'Chernokov Vodka', + name = 'vodka', + }, + vomex = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'vomex.png', + shouldClose = true, + label = 'Vomex', + name = 'vomex', + }, + sprunk_dose = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = 'Dose Zitronen Limo', + image = 'sprunk_dose.png', + shouldClose = true, + label = 'Sprunk Dose', + name = 'sprunk_dose', + }, + weapontint_mk2_8 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Brown & Black Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Brown & Black Tint', + name = 'weapontint_mk2_8', + }, + weapon_rpg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A rocket-propelled grenade launcher', + image = 'weapon_rpg.png', + label = 'RPG', + ammotype = 'AMMO_RPG', + name = 'weapon_rpg', + }, + weapon_combatmg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A combat version of an automatic gun that fires bullets in rapid succession for as long as the trigger is pressed', + image = 'weapon_combatmg.png', + label = 'Combat MG', + ammotype = 'AMMO_MG', + name = 'weapon_combatmg', + }, + weed_brick = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = '1KG Weed Brick to sell to large customers.', + image = 'weed_brick.png', + shouldClose = true, + label = 'Weed Brick', + name = 'weed_brick', + }, + weapon_switchblade = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A knife with a blade that springs out from the handle when a button is pressed', + name = 'weapon_switchblade', + label = 'Switchblade', + image = 'weapon_switchblade.png', + }, + lamb_chops = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'lamb_chops.png', + shouldClose = true, + label = 'Lammkoteletts', + name = 'lamb_chops', + }, + gg_cougar_claw_03 = { + useable = false, + weight = 500, + type = 'item', + unique = true, + description = '', + image = 'gg_cougar_claw_03.png', + shouldClose = true, + label = 'Makellose Puma-Klaue', + name = 'gg_cougar_claw_03', + }, + gg_salt_block_03 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'gg_salt_block_03.png', + shouldClose = true, + label = 'Premium Salzblock', + name = 'gg_salt_block_03', + }, + propofol_250 = { + useable = true, + weight = 250, + type = 'item', + unique = false, + description = '', + image = 'Propofol-00409469924-removebg-preview.png', + shouldClose = true, + label = 'Propofol 250', + name = 'propofol_250', + }, + weapon_assaultsmg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Voll Scifi ^^', + image = 'weapon_assaultsmg.png', + label = 'BDR-C ', + ammotype = 'AMMO_SMG', + name = 'weapon_assaultsmg', + }, + weapon_pumpshotgun_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Pumpshotgun MK2', + image = 'weapon_pumpshotgun_mk2.png', + label = 'Pumpshotgun Mk II', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_pumpshotgun_mk2', + }, + firework3 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Fireworks', + image = 'firework3.png', + shouldClose = true, + label = 'Inferno King ', + name = 'firework3', + }, + ggdrasils_oots = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Tief verwurzelt in den Gaben der Natur, bieten diese knusprigen Snacks eine Verbindung zu den alten Geschichten.', + image = 'YggdrasilsRootsGemuseChips.png.png', + shouldClose = true, + label = 'Yggdrasil\'s Roots', + name = 'yggdrasils_roots', + }, + heparin = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'heparin.png', + shouldClose = true, + label = 'Heparin', + name = 'heparin', + }, + weapontint_mk2_31 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Orange & Yellow Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Orange & Yellow Tint', + name = 'weapontint_mk2_31', + }, + remote = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'remote.png', + shouldClose = false, + label = 'TV Fernbedienung', + name = 'remote', + }, + bank_card = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = 'Used to access ATM', + image = 'bank_card.png', + shouldClose = true, + label = 'Bank Card', + name = 'bank_card', + }, + odins_wisdom_brew = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Ein Getränk, das auch ohne Alkohol die Weisheit und Kraft des Allvaters vermittelt – voller Geschmack und leicht süß.', + image = 'OdinsWisdomBrew.png', + shouldClose = true, + label = 'Odin\'s Wisdom Brew (alkoholfrei)', + name = 'odins_wisdom_brew', + }, + weapontint_1 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Green Weapon Tint', + image = 'weapontint_green.png', + shouldClose = true, + label = 'Green Tint', + name = 'weapontint_1', + }, + kq_outfitbag = { + useable = true, + weight = 5, + type = 'item', + unique = false, + description = 'Der Kleiderschrank für unterwegs', + image = 'kq_outfitbag.png', + shouldClose = false, + label = 'Outfit Rucksack', + name = 'kq_outfitbag', + }, + gg_hunting_knife_02 = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_hunting_knife_02.png', + shouldClose = true, + label = 'verbessertes Jagdmesser', + name = 'gg_hunting_knife_02', + }, + item_bench = { + useable = true, + weight = 15000, + type = 'item', + unique = true, + description = 'A workbench to craft items.', + image = 'workbench.png', + shouldClose = false, + label = 'Workbench', + name = 'item_bench', + }, + ibuprophen = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'Ibuprophen.png', + shouldClose = true, + label = 'Ibuprophen', + name = 'ibuprophen', + }, + veh_turbo = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Install vehicle turbo', + image = 'veh_turbo.png', + shouldClose = true, + label = 'Turbo', + name = 'veh_turbo', + }, + copper = { + useable = false, + weight = 800, + type = 'item', + unique = false, + description = 'Es ist Metall aber Weich ', + image = 'cooperbar.png', + shouldClose = false, + label = 'Kupferbarren', + name = 'copper', + }, + mg_ammo = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Ammo for Machine Guns', + image = 'mg_ammo.png', + shouldClose = true, + label = 'MG ammo', + name = 'mg_ammo', + }, + reyas_arden_alad = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Leicht und verführerisch, mit einer perfekten Balance von süß und herzhaft, genau wie die Göttin der Liebe.', + image = 'FreyasGardenSalad.png', + shouldClose = true, + label = 'Freya\'s Garden Salad', + name = 'reyas_arden_alad', + }, + gg_rabbit_pelt_01 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_rabbit_pelt_01.png', + shouldClose = true, + label = 'Raues Kaninchenfell', + name = 'gg_rabbit_pelt_01', + }, + laptop = { + useable = false, + weight = 4000, + type = 'item', + unique = false, + description = 'Expensive laptop', + image = 'laptop.png', + shouldClose = true, + label = 'Laptop', + name = 'laptop', + }, + weapon_compactrifle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A compact version of an assault rifle', + image = 'weapon_compactrifle.png', + label = 'Compact Rifle', + ammotype = 'AMMO_RIFLE', + name = 'weapon_compactrifle', + }, + weapon_bullpuprifle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Dieses Gewehr ist der neueste chinesische Import, der Amerika im Sturm erobert.', + image = 'screenshot_411-removebg-preview.png', + label = 'QBX-92-3', + ammotype = 'AMMO_RIFLE', + name = 'weapon_bullpuprifle', + }, + thermite = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Sometimes you\'d wish for everything to burn', + image = 'thermite.png', + shouldClose = true, + label = 'Thermite', + name = 'thermite', + }, + gg_captured_hen = { + useable = true, + weight = 5000, + type = 'item', + unique = true, + description = '', + image = 'gg_captured_hen.png', + shouldClose = true, + label = 'Gefangenes Huhn', + name = 'gg_captured_hen', + }, + orange_o_tang_zero_dose = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = 'Dose Orangen Limo', + image = 'orange_o_tang_zero_dose.png', + shouldClose = true, + label = 'Orange O Tang Zero Dose', + name = 'orange_o_tang_zero_dose', + }, + cuttingdisc = { + useable = false, + weight = 200, + type = 'item', + unique = true, + description = '', + image = 'cuttingdisc.png', + shouldClose = false, + label = 'Trennscheibe', + name = 'cuttingdisc', + }, + weapon_bullpupshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A compact smoothbore gun for firing small shot at short range', + image = 'weapon_bullpupshotgun.png', + label = 'Bullpup Shotgun', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_bullpupshotgun', + }, + ev_motor = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'ev_motor.png', + shouldClose = true, + label = 'EV_Motor', + name = 'ev_motor', + }, + gg_boar_tusk_02 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_boar_tusk_02.png', + shouldClose = true, + label = 'Robuster Eberzahn', + name = 'gg_boar_tusk_02', + }, + v8_engine = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'v8_engine.png', + shouldClose = true, + label = 'V8 Motor', + name = 'v8_engine', + }, + urapidil1 = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'urapidil1.png', + shouldClose = true, + label = 'Urapidil 1,0 mg', + name = 'urapidil1', + }, + rifle_extendedclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'rifle_extendedclip.png', + shouldClose = true, + label = 'erw. Gewehr Magazin', + name = 'rifle_extendedclip', + }, + weapon_machinepistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A self-loading pistol capable of burst or fully automatic fire', + image = 'weapon_machinepistol.png', + label = 'Tec-9', + ammotype = 'AMMO_PISTOL', + name = 'weapon_machinepistol', + }, + printerdocument = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = 'A nice document', + image = 'printerdocument.png', + shouldClose = true, + label = 'Dokument', + name = 'printerdocument', + }, + football = { + useable = true, + weight = 400, + type = 'item', + unique = true, + description = '', + image = 'football.png', + shouldClose = false, + label = 'Football', + name = 'football', + }, + thors_hammer = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'So kraftvoll wie der Schlag von Mjölnir, Thors legendärem Hammer.', + image = 'ThorsHammerBeer.png', + shouldClose = true, + label = 'Thor\'s Hammer', + name = 'thors_hammer', + }, + tier_leckerlis = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Freude für deinen Vierbeiner.', + image = 'tier_leckerlies.png', + shouldClose = true, + label = 'Tier Leckerlis', + name = 'tier_leckerlis', + }, + raki = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'türkisches Nationalgetränk, aus Weintrauben oder Rosinen gebrannter Anisée', + image = 'raki.png', + shouldClose = true, + label = 'Raki', + name = 'raki', + }, + turbocharger = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'turbocharger.png', + shouldClose = true, + label = 'Premium Turbokit', + name = 'turbocharger', + }, + blood_500 = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = '', + image = 'blood_500.png', + shouldClose = true, + label = 'Blut (500ml)', + name = 'blood_500', + }, + ecg_monitor = { + useable = true, + weight = 2500, + type = 'item', + unique = false, + description = '', + image = '148383-multiparameter-patientenmonitor-pc-3000-lepu-medical-2-removebg-preview.png', + shouldClose = true, + label = 'EKG Monitor', + name = 'ecg_monitor', + }, + snikkel_candy = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Some delicious candy :O', + image = 'snikkel_candy.png', + shouldClose = true, + label = 'EarthQuakes', + name = 'snikkel_candy', + }, + weapon_pocketlight = { + useable = true, + weight = 100, + type = 'weapon', + unique = true, + description = '', + image = 'w_me_pocketlight.png', + shouldClose = true, + label = 'kleine Taschenlampe', + name = 'weapon_pocketlight', + }, + ammunition_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'ammunition_route.png', + shouldClose = false, + label = 'Munitions Route', + name = 'ammunition_route', + }, + cleaningkit = { + useable = true, + weight = 250, + type = 'item', + unique = false, + description = 'A microfiber cloth with some soap will let your car sparkle again!', + image = 'cleaningkit.png', + shouldClose = true, + label = 'Cleaning Kit', + name = 'cleaningkit', + }, + rifle_grip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'ar_grip.png', + shouldClose = true, + label = 'Gewehrgriff', + name = 'rifle_grip', + }, + baldurs_light = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Sanft und erfrischend, wie das reine Licht, das Baldur ausstrahlt.', + image = 'BaldursLight.png', + shouldClose = true, + label = 'Baldur\'s Light', + name = 'baldurs_light', + }, + fat_end_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'fat_end_muzzle_brake.png', + shouldClose = true, + label = 'Fat End Muzzle Brake', + name = 'fat_end_muzzle_brake', + }, + goldbar = { + useable = false, + weight = 7000, + type = 'item', + unique = false, + description = 'Looks pretty expensive to me', + image = 'goldbar.png', + shouldClose = true, + label = 'Gold Bar', + name = 'goldbar', + }, + nacl_1000 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'nacl.png', + shouldClose = true, + label = 'NACL (1000ml)', + name = 'nacl_1000', + }, + ready_methpipe = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Der schnelle Weg ins Nirvana – aber du verpasst den Ausgang', + image = 'opium_pipe.png', + shouldClose = true, + label = 'Gefüllte Methpfeife', + name = 'ready_methpipe', + }, + weapontint_mk2_24 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Platinum Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Platinum Tint', + name = 'weapontint_mk2_24', + }, + walkstick = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Walking stick for ya\'ll grannies out there.. HAHA', + image = 'walkstick.png', + shouldClose = true, + label = 'Walking Stick', + name = 'walkstick', + }, + morphine = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'syringe.png', + shouldClose = true, + label = 'Morphiumspritze', + name = 'morphine', + }, + doener = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Döner macht schöner...', + image = 'doner.png', + shouldClose = true, + label = 'Döner', + name = 'doener', + }, + lutschfinger_eis = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'wie aus deiner Kindheit', + image = 'lutschfinger_eis.png', + shouldClose = true, + label = 'Lutschfinger Eis', + name = 'lutschfinger_eis', + }, + moneybag = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = 'A bag with cash', + image = 'moneybag.png', + shouldClose = true, + label = 'Money Bag', + name = 'moneybag', + }, + ironoxide = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Some powder to mix with.', + image = 'ironoxide.png', + shouldClose = false, + label = 'Iron Powder', + name = 'ironoxide', + }, + kino_keycard = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = '', + image = 'keycard.png', + shouldClose = false, + label = 'Moonlight Cinema Keycard', + name = 'kino_keycard', + }, + raw_kebab = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'raw_kebab.png', + shouldClose = true, + label = 'roher Schaschlickspieß', + name = 'raw_kebab', + }, + vehicletrackertablet = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'vehicletrackertablet.png', + shouldClose = true, + label = 'Fahrzeugtracker Tablet', + name = 'vehicletrackertablet', + }, + weapontint_mk2_21 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Red & White Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Red & White Tint', + name = 'weapontint_mk2_21', + }, + weapontint_mk2_2 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Two-Tone Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Two-Tone Tint', + name = 'weapontint_mk2_2', + }, + nitrous_bottle = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = '', + image = '', + shouldClose = false, + label = 'Nitro Flasche', + name = 'nitrous_bottle', + }, + cryptostick = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Why would someone ever buy money that doesn\'t exist.. How many would it contain..?', + image = 'cryptostick.png', + shouldClose = true, + label = 'Crypto Stick', + name = 'cryptostick', + }, + ayran = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'erfrischendes Joghurtgetränk', + image = 'Ayran.png', + shouldClose = true, + label = 'Ayran', + name = 'ayran', + }, + s_shake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 's_shake.png', + shouldClose = true, + label = 'Schokoshake', + name = 's_shake', + }, + security_card_02 = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A security card... I wonder what it goes to', + image = 'security_card_02.png', + shouldClose = true, + label = 'Security Card B', + name = 'security_card_02', + }, + weapon_hazardcan = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Hazardcan', + image = 'weapon_hazardcan.png', + label = 'Hazardous Jerry Can', + ammotype = 'AMMO_PETROLCAN', + name = 'weapon_hazardcan', + }, + weapon_smokegrenade = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An explosive charge that can be remotely detonated', + name = 'weapon_smokegrenade', + label = 'Rauchgranate', + image = 'screenshot_425-removebg-preview.png', + }, + weapontint_4 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Army Weapon Tint', + image = 'weapontint_army.png', + shouldClose = true, + label = 'Army Tint', + name = 'weapontint_4', + }, + weapontint_mk2_19 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Cyan Features Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Cyan Features Tint', + name = 'weapontint_mk2_19', + }, + blood_250 = { + useable = true, + weight = 250, + type = 'item', + unique = false, + description = '', + image = 'blood_250.png', + shouldClose = true, + label = 'Blut (250ml)', + name = 'blood_250', + }, + weapon_flare = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A small pyrotechnic devices used for illumination and signalling', + image = 'weapon_flare.png', + label = 'Flare pistol', + ammotype = 'AMMO_FLARE', + name = 'weapon_flare', + }, + grape = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Mmmmh yummie, grapes', + image = 'grape.png', + shouldClose = false, + label = 'Weintrauben', + name = 'grape', + }, + weapon_navyrevolver = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Navyrevolver', + image = 'weapon_navyrevolver.png', + label = 'Navy Revolver', + ammotype = 'AMMO_PISTOL', + name = 'weapon_navyrevolver', + }, + cooked_ribs = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_ribs.png', + shouldClose = true, + label = 'gegrillte Rippchen', + name = 'cooked_ribs', + }, + gg_hunting_cookedmeat = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = '', + image = 'gg_hunting_cookedmeat.png', + shouldClose = true, + label = 'gebratenes Wildfleisch', + name = 'gg_hunting_cookedmeat', + }, + dueruem = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Wrap, mit typischen Döner-Kebab-Zutaten gefüllt', + image = 'durum.png', + shouldClose = true, + label = 'Dürüm', + name = 'dueruem', + }, + rifle_holoscope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'MK2 Gewehr Holovisier', + image = 'holoscope_attachment.png', + shouldClose = true, + label = '100', + name = 'rifle_holoscope', + }, + cooked_corn_cob = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cooked_corn_cob.png', + shouldClose = true, + label = 'gegrillter Maiskolben', + name = 'cooked_corn_cob', + }, + police_card = { + useable = true, + weight = 10, + type = 'item', + unique = true, + description = '', + image = 'police_card.png', + shouldClose = true, + label = 'PD Dienstausweis', + name = 'police_card', + }, + roofbox_color = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'roofbox_color.png', + shouldClose = true, + label = 'Farbige Dachbox', + name = 'roofbox_color', + }, + emergency_revive_kit = { + useable = true, + weight = 1500, + type = 'item', + unique = false, + description = '', + image = 'medbox.png', + shouldClose = true, + label = 'Wiederbelebungs-Kit', + name = 'emergency_revive_kit', + }, + okis_ischief_ites = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Knusprige Bissen, die mit einer scharfen Überraschung im Inneren den Gästen einen schelmischen Spaß bereiten.', + image = 'LokisMischiefBites.png', + shouldClose = true, + label = 'Loki\'s Mischief Bites', + name = 'okis_ischief_ites', + }, + klimo = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'klimo.png', + shouldClose = true, + label = 'Kirschlimonade', + name = 'klimo', + }, + filled_evidence_bag = { + useable = false, + weight = 200, + type = 'item', + unique = true, + description = 'A filled evidence bag to see who committed the crime >:(', + image = 'evidence.png', + shouldClose = false, + label = 'Evidence Bag', + name = 'filled_evidence_bag', + }, + latte = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Er hat Latte gesagt XD', + image = 'latte.png', + shouldClose = true, + label = 'Glas Latte Macchiato', + name = 'latte', + }, + pistol_holoscope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'holoscope_attachment.png', + shouldClose = true, + label = 'Pistolenvisier', + name = 'pistol_holoscope', + }, + weapontint_mk2_15 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Orange Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Orange Tint', + name = 'weapontint_mk2_15', + }, + cooked_bbq_wings = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_bbq_wings.png', + shouldClose = true, + label = 'gegrillte BBQ Wings', + name = 'cooked_bbq_wings', + }, + rubber = { + useable = false, + weight = 600, + type = 'item', + unique = false, + description = 'Rubber, I believe you can make your own rubber ducky with it :D', + image = 'rubber.png', + shouldClose = false, + label = 'Gummi', + name = 'rubber', + }, + sniper_flashlight = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'flashlight_attachment.png', + shouldClose = true, + label = 'Sniper Licht', + name = 'sniper_flashlight', + }, + pistol_smallscope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'smallscope_attachment.png', + shouldClose = true, + label = 'MK2 Revolver Visier', + name = 'pistol_smallscope', + }, + smg_suppressor = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'suppressor_attachment.png', + shouldClose = true, + label = 'SMG Schalldämpfer', + name = 'smg_suppressor', + }, + weapon_garbagebag = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A garbage bag', + name = 'weapon_garbagebag', + label = 'Garbage Bag', + image = 'weapon_garbagebag.png', + }, + slick_tyres = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'slick_tyres.png', + shouldClose = true, + label = 'Reifen slick', + name = 'slick_tyres', + }, + ceramic_brakes = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'ceramic_brakes.png', + shouldClose = true, + label = 'Ceramic Bremsen', + name = 'ceramic_brakes', + }, + pizza_burger = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Zartes Wagyu-Patty, würzige Salami, fruchtige Tomatensauce und geschmolzener Mozzarella, serviert in fluffigen Brioche Buns', + image = 'pizza_burger.png', + shouldClose = true, + label = 'Pizza Burger', + name = 'pizza_burger', + }, + emergencydrone = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'emergencydrone.png', + shouldClose = true, + label = 'Einsatz Drohne', + name = 'emergencydrone', + }, + sniper_largescope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'advscope_attachment.png', + shouldClose = true, + label = 'Sniper Visier groß', + name = 'sniper_largescope', + }, + emptybag = { + useable = false, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'emptybag.png', + shouldClose = false, + label = 'leerer Sack', + name = 'emptybag', + }, + ammo_beanbag = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Munition für die Beanbag Shotgun', + image = 'beanbag_ammo.png', + shouldClose = true, + label = 'Beanbag Ammo', + name = 'ammo_beanbag', + }, + burrito = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_690-removebg-preview.png', + shouldClose = true, + label = 'Burrito', + name = 'burrito', + }, + weapon_railgunxm3 = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A weapon that uses electromagnetic force to launch high velocity projectiles', + name = 'weapon_railgunxm3', + label = 'Railgun XM3', + image = 'weapon_railgunxm3.png', + }, + weapon_hatchet = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A small axe with a short handle for use in one hand', + name = 'weapon_hatchet', + label = 'Beil', + image = 'weapon_hatchet.png', + }, + weed_whitewidow = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'A weed bag with 2g White Widow', + image = 'weed_baggy.png', + shouldClose = false, + label = 'White Widow 2g', + name = 'weed_whitewidow', + }, + midazolam = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Midazolam', + name = 'midazolam', + }, + weapon_remotesniper = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A portable high-precision, long-range rifle', + image = 'weapon_remotesniper.png', + label = 'Remote Sniper', + ammotype = 'AMMO_SNIPER_REMOTE', + name = 'weapon_remotesniper', + }, + goezleme = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'würzig gefülltes Fladenbrot', + image = 'Goezleme.png', + shouldClose = true, + label = 'Gözleme', + name = 'goezleme', + }, + weapontint_2 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Gold Weapon Tint', + image = 'weapontint_gold.png', + shouldClose = true, + label = 'Gold Tint', + name = 'weapontint_2', + }, + gg_deer_hide_02 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_deer_hide_02.png', + shouldClose = true, + label = 'Robustes Hirschleder', + name = 'gg_deer_hide_02', + }, + big_bottle_cola = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = '', + image = 'big_bottle_cola.png', + shouldClose = true, + label = 'große Flasche E-Cola', + name = 'big_bottle_cola', + }, + weapons_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'weaponsroute.png', + shouldClose = false, + label = 'Waffen Route', + name = 'weapons_route', + }, + weapon_raypistol = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Raypistol', + image = 'weapon_raypistol.png', + label = 'Up-n-Atomizer', + ammotype = 'AMMO_PISTOL', + name = 'weapon_raypistol', + }, + vape = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = '', + image = 'vape.png', + shouldClose = false, + label = 'E-Dampfe', + name = 'vape', + }, + fwd_drivetrain = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'fwd_drivetrain.png', + shouldClose = true, + label = 'FWD', + name = 'fwd_drivetrain', + }, + split_end_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'split_end_muzzle_brake.png', + shouldClose = true, + label = 'Split End Muzzle Brake', + name = 'split_end_muzzle_brake', + }, + cooked_brisket = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_brisket.png', + shouldClose = true, + label = 'gegrilltes Brisket', + name = 'cooked_brisket', + }, + packung = { + useable = false, + weight = 400, + type = 'item', + unique = false, + description = '', + image = 'packung.png', + shouldClose = false, + label = 'leere Verpackung', + name = 'packung', + }, + weapon_sniperrifle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Wenn man mal das Gesetzt von weiter weg vertreten muss.', + image = 'screenshot_414-removebg-preview.png', + label = 'ABM Sniper Rifle', + ammotype = 'AMMO_SNIPER', + name = 'weapon_sniperrifle', + }, + spazi = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'Cola trifft Orange – wie nie zuvor gesehen. Falls dir das bekannt vorkommt: Nein, du bildest dir das nur ein.', + image = 'spazi.png', + shouldClose = true, + label = 'Bergbräu Spazi ', + name = 'spazi', + }, + caviar = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'caviar.png', + shouldClose = false, + label = 'Kaviar', + name = 'caviar', + }, + rifle_largescope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'largescope_attachment.png', + shouldClose = true, + label = 'Mk2 Gewehr Visier groß', + name = 'rifle_largescope', + }, + gazoz = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'kohlensäurehaltiges, süßes Erfrischungsgetränk ', + image = 'Gazoz.png', + shouldClose = true, + label = 'Gazoz', + name = 'gazoz', + }, + gg_pug_bait_01 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'gg_pug_bait_01.png', + shouldClose = true, + label = 'Illegaler Raubtierköder 1', + name = 'gg_pug_bait_01', + }, + wwine = { + useable = true, + weight = 300, + type = 'item', + unique = false, + description = '', + image = 'wwine.png', + shouldClose = true, + label = 'Weißwein', + name = 'wwine', + }, + battery = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'battery.png', + shouldClose = false, + label = 'Akku', + name = 'battery', + }, + schnitzelbroetchen = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Knuspriger Held im Brötchenmantel – das Schnitzel regelt!', + image = 'schnitzelbroetchen.png', + shouldClose = true, + label = 'Schnitzelbrötchen', + name = 'schnitzelbroetchen', + }, + sprunk_zero_flasche = { + useable = true, + weight = 80, + type = 'item', + unique = false, + description = 'Flasche Zero Zitronen Limo', + image = 'sprunk_zero_flasche.png', + shouldClose = true, + label = 'Sprunk Zero Flasche', + name = 'sprunk_zero_flasche', + }, + kaugummi = { + useable = true, + weight = 40, + type = 'item', + unique = false, + description = 'Damit dein Maul net mehr so Stinkt...', + image = 'kaugummi.png', + shouldClose = true, + label = 'Kaugummi ', + name = 'kaugummi', + }, + file = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'file.png', + shouldClose = false, + label = 'SD Karte mit Datei', + name = 'file', + }, + c_cake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'c_cake.png', + shouldClose = true, + label = 'Chocolate Cake', + name = 'c_cake', + }, + roadpods = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = '„Klang für Menschen, die sich keine Kompromisse anhören.“', + image = 'roadpods.png', + shouldClose = true, + label = 'iFruit Ear Buds', + name = 'roadpods', + }, + magic_mushroom = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Der Pilz, der dir das Gefühl gibt, du könntest mit deinen Gedanken den Regenbogen malen.', + image = 'magic_mushroom.png', + shouldClose = false, + label = 'Mutterkorn', + name = 'magic_mushroom', + }, + diving_fill = { + useable = true, + weight = 3000, + type = 'item', + unique = true, + description = 'An oxygen tube and a rebreather', + image = 'diving_tube.png', + shouldClose = true, + label = 'Diving Tube', + name = 'diving_fill', + }, + stoast = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'stoast.png', + shouldClose = true, + label = 'Sucuktoast', + name = 'stoast', + }, + rohkaffee = { + useable = false, + weight = 4, + type = 'item', + unique = false, + description = '', + image = 'rohkaffee.png', + shouldClose = false, + label = 'Rohkaffee', + name = 'rohkaffee', + }, + chicken_thigh = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'chicken_thigh.png', + shouldClose = true, + label = 'rohe Hähnchenkeule', + name = 'chicken_thigh', + }, + penicillin = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'penicillin.png', + shouldClose = true, + label = 'Penicillin', + name = 'penicillin', + }, + screwdriverset = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = 'Sehr nützlich zum Schrauben... zu schrauben...', + image = 'screwdriverset.png', + shouldClose = false, + label = 'Schraubendreher Set', + name = 'screwdriverset', + }, + cosmetic_part = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'cosmetic_part.png', + shouldClose = true, + label = 'Cosmetickit', + name = 'cosmetic_part', + }, + weapon_minigun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A portable machine gun consisting of a rotating cluster of six barrels and capable of variable rates of fire of up to 6,000 rounds per minute', + image = 'weapon_minigun.png', + label = 'Minigun', + ammotype = 'AMMO_MINIGUN', + name = 'weapon_minigun', + }, + binoculars = { + useable = true, + weight = 600, + type = 'item', + unique = true, + description = 'EY!DU sollst nicht spannern!', + image = 'fernglas.png', + shouldClose = true, + label = 'Fernglas', + name = 'binoculars', + }, + weed_purplehaze = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'A weed bag with 2g Purple Haze', + image = 'weed_baggy.png', + shouldClose = false, + label = 'Purple Haze 2g', + name = 'weed_purplehaze', + }, + veh_wheels = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle wheels', + image = 'veh_wheels.png', + shouldClose = true, + label = 'Wheels', + name = 'veh_wheels', + }, + sauerstoff = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'screenshot_697-removebg-preview.png', + shouldClose = true, + label = 'Sauerstoff', + name = 'sauerstoff', + }, + skadis_winter_skewers = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'sws.png', + shouldClose = true, + label = 'Skadis Winter Skewers', + name = 'skadis_winter_skewers', + }, + olimo = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'olimo.png', + shouldClose = true, + label = 'Orangenlimonade', + name = 'olimo', + }, + seed = { + useable = true, + weight = 5, + type = 'item', + unique = false, + description = '', + image = 'seed.png', + shouldClose = true, + label = 'Samen', + name = 'seed', + }, + weapon_proxmine = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A bomb placed on the ground that detonates when going within its proximity', + name = 'weapon_proxmine', + label = 'Proxmine Grenade', + image = 'weapon_proximitymine.png', + }, + sunflowerseeds = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Der Snack zum selber knacken', + image = 'Sonnenblumenkerne.png', + shouldClose = true, + label = 'Sonnenblumenkerne', + name = 'sunflowerseeds', + }, + v6_engine = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'v6_engine.png', + shouldClose = true, + label = 'V6 Motor', + name = 'v6_engine', + }, + fruitpicker = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '', + image = 'fruitpicker.png', + shouldClose = false, + label = 'Obstpflücker', + name = 'fruitpicker', + }, + bleeder = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'bleeder.png', + shouldClose = true, + label = 'The Bleeder', + name = 'bleeder', + }, + esketamin = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'esketamin.png', + shouldClose = true, + label = 'Esketamin', + name = 'esketamin', + }, + loaded_fries = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Knusprige Pommes, reich belegt mit köstlichen Toppings', + image = 'loaded_fries.png', + shouldClose = true, + label = 'Loaded Fries', + name = 'loaded_fries', + }, + gg_captured_rabbit = { + useable = true, + weight = 5000, + type = 'item', + unique = true, + description = '', + image = 'gg_captured_rabbit.png', + shouldClose = true, + label = 'Gefangenes Kaninchen', + name = 'gg_captured_rabbit', + }, + wine = { + useable = true, + weight = 300, + type = 'item', + unique = false, + description = 'Some good wine to drink on a fine evening', + image = 'wine.png', + shouldClose = true, + label = 'Rotwein', + name = 'wine', + }, + zlimo = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'zlimo.png', + shouldClose = true, + label = 'Zitronenlimonade', + name = 'zlimo', + }, + pistol_suppressor = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'suppressor_attachment.png', + shouldClose = true, + label = 'Pistolen Schalldämpfer', + name = 'pistol_suppressor', + }, + glass = { + useable = false, + weight = 600, + type = 'item', + unique = false, + description = 'It is very fragile, watch out', + image = 'glass.png', + shouldClose = false, + label = 'Glas', + name = 'glass', + }, + pufferfish = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'putterfish.png', + shouldClose = false, + label = 'Kugelfisch', + name = 'pufferfish', + }, + heartstopper = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = '"Sieben Lagen pures Glück – und ein direkter Weg zum Herzstillstand!"', + image = 'heartstopper.png', + shouldClose = true, + label = 'Heart Stopper ', + name = 'heartstopper', + }, + gumianimals = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Zurück in die Kindheit – Deine Retro-Tüte voller bunter Gummi-Tierchen!', + image = 'gummanimals.png', + shouldClose = true, + label = 'Gummitierchen', + name = 'gumianimals', + }, + armor = { + useable = true, + weight = 4000, + type = 'item', + unique = false, + description = 'Some protection won\'t hurt... right?', + image = 'armor.png', + shouldClose = true, + label = 'Kugelsichere Weste', + name = 'armor', + }, + weapon_snspistol_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Sie sieht gefährlich aus, macht Krach – und verursacht blaue Flecken.', + image = 'weapon_snspistol_mk2.png', + label = 'Softair Pistole', + ammotype = 'AMMO_PISTOL', + name = 'weapon_snspistol_mk2', + }, + gg_deer_hide_01 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_deer_hide_01.png', + shouldClose = true, + label = 'Raues Hirschleder', + name = 'gg_deer_hide_01', + }, + dirischebs = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'Der_Irische_Beziehungsstatus.png', + shouldClose = false, + label = 'Der Irische Beziehungstatus', + name = 'dirischebs', + }, + tobbaco = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'tobbaco.png', + shouldClose = false, + label = 'Tabak', + name = 'tobbaco', + }, + weapon_smg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Deutsche Ingenieurskunst in Kompaktform, gebaut für Cops, die auf Präzision und Verlässlichkeit zählen.', + image = 'weapon_smg.png', + label = 'MP5', + ammotype = 'AMMO_SMG', + name = 'weapon_smg', + }, + weapon_pistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Das Multitool zum Löcher machen.', + image = 'screenshot_398-removebg-preview.png', + label = 'Bretta', + ammotype = 'AMMO_PISTOL', + name = 'weapon_pistol', + }, + urapidil3 = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'urapidil1.png', + shouldClose = true, + label = 'Urapidil 3,0 mg', + name = 'urapidil3', + }, + black_phone = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '„Mach Schluss mit echten Gesprächen – es gibt jetzt bessere Ablenkungen.“', + image = 'black_phone.png', + shouldClose = false, + label = 'iFruit 12XR Schwarz', + name = 'black_phone', + }, + drone = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'drone.png', + shouldClose = true, + label = 'Drohne', + name = 'drone', + }, + freyas_blossom = { + useable = true, + weight = 250, + type = 'item', + unique = true, + description = 'Ein blumiges und fruchtiges Getränk, das die Zartheit und Schönheit, der Göttin Freya widerspiegelt.', + image = 'FreyasBlossom.png', + shouldClose = true, + label = 'Freyas Blossom', + name = 'freyas_blossom', + }, + gleitgel = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = 'Falls es mal zu Trocken ist ^^', + image = 'gleitgel.png', + shouldClose = false, + label = 'Gleitgel', + name = 'gleitgel', + }, + veh_suspension = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle suspension', + image = 'veh_suspension.png', + shouldClose = true, + label = 'Suspension', + name = 'veh_suspension', + }, + packlollis = { + useable = true, + weight = 40, + type = 'item', + unique = false, + description = '', + image = 'packlollis.png', + shouldClose = true, + label = 'Tüte Lollis', + name = 'packlollis', + }, + gg_hunting_knife_01 = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_hunting_knife_01.png', + shouldClose = true, + label = 'Klassisches Jagdmesser', + name = 'gg_hunting_knife_01', + }, + emp_ammo = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Ammo for EMP Launcher', + image = 'emp_ammo.png', + shouldClose = true, + label = 'EMP Ammo', + name = 'emp_ammo', + }, + orange_o_tang_zero_flasche = { + useable = true, + weight = 80, + type = 'item', + unique = false, + description = 'Flasche Orangen Limo', + image = 'orange_o_tang_zero_flasche.png', + shouldClose = true, + label = 'Orange O Tang Zero Flasche', + name = 'orange_o_tang_zero_flasche', + }, + weapontint_mk2_25 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Gray & Lilac Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Gray & Lilac Tint', + name = 'weapontint_mk2_25', + }, + njords_ocean_breeze_alkoholfrei = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'NjordsOceanBreeze.png', + shouldClose = true, + label = 'Njords Ocean Breeze', + name = 'njords_ocean_breeze_alkoholfrei', + }, + cup_cola = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cup_cola.png', + shouldClose = true, + label = 'Becher E-Cola', + name = 'cup_cola', + }, + wurmkur = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'Wurmkur.png', + shouldClose = true, + label = 'Wurmkur', + name = 'wurmkur', + }, + repairkit = { + useable = true, + weight = 2500, + type = 'item', + unique = false, + description = 'A nice toolbox with stuff to repair your vehicle', + image = 'repairkit.png', + shouldClose = true, + label = 'Repairkit', + name = 'repairkit', + }, + diamond = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'A diamond seems like the jackpot to me!', + image = 'diamond.png', + shouldClose = true, + label = 'Diamond', + name = 'diamond', + }, + lokis_trickery = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Unvorhersehbar und gefährlich, genau wie der Gott der Streiche selbst.', + image = 'LokisTrickery.png', + shouldClose = true, + label = 'Loki\'s Trickery', + name = 'lokis_trickery', + }, + weapon_bullpuprifle_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Bull Puprifle MK2', + image = 'weapon_bullpuprifle_mk2.png', + label = 'Bullpup Rifle Mk II', + ammotype = 'AMMO_RIFLE', + name = 'weapon_bullpuprifle_mk2', + }, + aldurs_right_ites = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Leicht und erfrischend, diese Bissen erhellen den Geist und lassen den Geschmack erstrahlen.', + image = 'BaldursBrightBites.png', + shouldClose = true, + label = 'Baldur\'s Bright Bites', + name = 'aldurs_right_ites', + }, + bbq_grill = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'bbq_grill.png', + shouldClose = true, + label = 'BBQ Grill', + name = 'bbq_grill', + }, + heimdalls_clear_sight = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'HeimdallsClearSight.png', + shouldClose = true, + label = 'Heimdalls Clear Sight', + name = 'heimdalls_clear_sight', + }, + zig = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'zig.png', + shouldClose = false, + label = 'selbstgedrehte Zigarette ', + name = 'zig', + }, + weapontint_mk2_20 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Yellow Features Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Yellow Features Tint', + name = 'weapontint_mk2_20', + }, + shotgun_ammo = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'viel Peng', + image = 'shotgun_ammo.png', + shouldClose = true, + label = 'Shotgun Munition', + name = 'shotgun_ammo', + }, + nordisee_fischfrikadellenbroetchen = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '"Die Fischfrikadelle im Brötchen hat einen längeren Reiseweg hinter sich als ein Container von Bremerhaven bis zum Hafen von Los Santos – inklusive Turbulenzen über dem Atlantik und Jetlag in der Remoulade."', + image = 'nordisee_fischfrikadellenbroetchen.png', + shouldClose = true, + label = 'Nordisee Fischfrikadellenbrötchen', + name = 'nordisee_fischfrikadellenbroetchen', + }, + box = { + useable = false, + weight = 600, + type = 'item', + unique = true, + description = '', + image = 'box.png', + shouldClose = false, + label = 'Kiste', + name = 'box', + }, + gg_pug_bait_03 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'gg_pug_bait_03.png', + shouldClose = true, + label = 'Illegaler Raubtierköder 3', + name = 'gg_pug_bait_03', + }, + weapontint_mk2_6 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Blue Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Blue Tint', + name = 'weapontint_mk2_6', + }, + mixed_grilled_plate = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'gemischter Grillteller mit Beilagen', + image = 'Gemischter_grillteller.png', + shouldClose = true, + label = 'KARIŞIK IZGARA ', + name = 'mixed_grilled_plate', + }, + bcesandwich = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Knuspriger Bacon, geschmolzener Käse und ein saftiges Spiegelei, geschichtet zwischen zwei goldbraun gerösteten Toastscheiben', + image = 'bcesandwich.png', + shouldClose = true, + label = 'Bacon Cheese Egg Sandwich', + name = 'bcesandwich', + }, + weed_skunk = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'A weed bag with 2g Skunk', + image = 'weed_baggy.png', + shouldClose = false, + label = 'Skunk 2g', + name = 'weed_skunk', + }, + spazi_limo = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'Spritzig, lecker, absolut neu und revolutionär. Ähnlichkeiten zu anderen Limos? Niemals. Reinste Zufälle. Wirklich.', + image = 'spazi_limo.png', + shouldClose = true, + label = 'Bergbräu Limo', + name = 'spazi_limo', + }, + burger = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'burger.png', + shouldClose = true, + label = 'Hamburger mit Käse', + name = 'burger', + }, + newsmic = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'A microphone for the news', + image = 'newsmic.png', + shouldClose = true, + label = 'News Microphone', + name = 'newsmic', + }, + nitrous_install_kit = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'nitrous_install_kit.png', + shouldClose = true, + label = 'Nitrokit', + name = 'nitrous_install_kit', + }, + elastic_bandage = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'elastisches-medizinisches-bandageband-komprimierend-geringe-dehnung-80-mm_189499203-removebg-preview.png', + shouldClose = true, + label = 'Elastische Binde', + name = 'elastic_bandage', + }, + etilefrin = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Etilefrin', + name = 'etilefrin', + }, + bulletproof_tyres = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'bulletproof_tyres.png', + shouldClose = true, + label = 'Reifen Gebanzert', + name = 'bulletproof_tyres', + }, + red_phone = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '„So smart, es wundert sich selbst, warum es bei dir gelandet ist.“', + image = 'red_phone.png', + shouldClose = false, + label = 'iFruit 12XR Rot', + name = 'red_phone', + }, + sniper_defaultclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'sniper_defaultclip.png', + shouldClose = true, + label = 'Sniper Magzin', + name = 'sniper_defaultclip', + }, + weapon_stone_hatchet = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Stone Hatchet', + name = 'weapon_stone_hatchet', + label = 'Stone Hatchet', + image = 'weapon_stone_hatchet.png', + }, + amiodaron = { + useable = true, + weight = 15, + type = 'item', + unique = false, + description = '', + image = 'amiodaron.png', + shouldClose = true, + label = 'Amiodaron', + name = 'amiodaron', + }, + weapon_grenadelauncher = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A weapon that fires a specially-designed large-caliber projectile, often with an explosive, smoke or gas warhead', + image = 'weapon_grenadelauncher.png', + label = 'Grenade Launcher', + ammotype = 'AMMO_GRENADELAUNCHER', + name = 'weapon_grenadelauncher', + }, + weaponlicense = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = 'Weapon License', + image = 'weapon_license.png', + shouldClose = true, + label = 'Weapon License', + name = 'weaponlicense', + }, + ohrstopsel = { + useable = false, + weight = 20, + type = 'item', + unique = true, + description = 'damit du das Stöhnen der Nachbarn net hören musst', + image = 'oropax.png', + shouldClose = false, + label = 'Ohrstöpsel', + name = 'ohrstopsel', + }, + kanister = { + useable = false, + weight = 600, + type = 'item', + unique = false, + description = '', + image = 'kanister.png', + shouldClose = false, + label = 'leerer Kanister', + name = 'kanister', + }, + weed = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Wächst, riecht, entspannt', + image = 'marihuana.png', + shouldClose = false, + label = 'Cannabis Knolle', + name = 'weed', + }, + ifs_olden_ectar = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Fruchtig und süß, wie die goldene Ernte auf den Feldern – ein perfekter Genuss für jede Gelegenheit.', + image = 'SifGoldenNectar.png', + shouldClose = true, + label = 'Sif\'s Golden Nectar', + name = 'ifs_olden_ectar', + }, + injection = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Bereit für alles, aber hat nix zu sagen.', + image = 'syringe.png', + shouldClose = false, + label = 'Spritze', + name = 'injection', + }, + tavor1 = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'tavor1.png', + shouldClose = true, + label = 'Tavor 1,0 mg', + name = 'tavor1', + }, + pistol_barrel = { + useable = false, + weight = 250, + type = 'item', + unique = false, + description = 'Der einzige Weg, wie du in kürzester Zeit einen bleibenden Eindruck hinterlässt', + image = 'weapon_batton.png', + shouldClose = false, + label = 'Pistolenlauf', + name = 'pistol_barrel', + }, + semi_slick_tyres = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'semi_slick_tyres.png', + shouldClose = true, + label = 'Reifen semi slick', + name = 'semi_slick_tyres', + }, + weapon_minismg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A mini handheld light weight machine gun', + image = 'weapon_minismg.png', + label = 'Mini SMG', + ammotype = 'AMMO_SMG', + name = 'weapon_minismg', + }, + thermalvision = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = 'i can seeee you ^^', + image = 'thermalvision.png', + shouldClose = true, + label = 'Thermalvisier', + name = 'thermalvision', + }, + pork_joint = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'pork_joint.png', + shouldClose = true, + label = 'roher Schweinebraten', + name = 'pork_joint', + }, + luxuryfinish_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A luxury finish for a weapon', + image = 'luxuryfinish_attachment.png', + shouldClose = true, + label = 'Luxury Finish', + name = 'luxuryfinish_attachment', + }, + weapon_nightstick = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A police officer\'s club or billy', + name = 'weapon_nightstick', + label = 'Nightstick', + image = 'weapon_nightstick.png', + }, + gg_hunting_animaltracker = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_hunting_animaltracker.png', + shouldClose = true, + label = 'Tier Ortungsgerät', + name = 'gg_hunting_animaltracker', + }, + empty_weed_bag = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A small empty bag', + image = 'weed_baggy_empty.png', + shouldClose = true, + label = 'Empty Weed Bag', + name = 'empty_weed_bag', + }, + weapon_sled = { + useable = false, + weight = 250, + type = 'item', + unique = false, + description = 'Der flinke Kurier, der das Feuer in Bewegung bringt', + image = 'Waffenschlitten.png', + shouldClose = false, + label = 'Pistolenschlitten', + name = 'weapon_sled', + }, + gg_coyote_fangs_01 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_coyote_fangs_01.png', + shouldClose = true, + label = 'Robuster Kojotenzahn', + name = 'gg_coyote_fangs_01', + }, + rolling_paper = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Der Stoff, der Gras und Tabak zusammenhält', + image = 'rolling_paper2.png', + shouldClose = true, + label = 'Drehpapier', + name = 'rolling_paper', + }, + weapontint_mk2_11 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Yellow Contrast Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Yellow Contrast Tint', + name = 'weapontint_mk2_11', + }, + pinger = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'With a pinger and your phone you can send out your location', + image = 'pinger.png', + shouldClose = true, + label = 'Pinger', + name = 'pinger', + }, + munky_juice = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Trinkpäckchen mit Saft und ja der Strohhalm ist aus Plastik ^^', + image = 'munky_juice.png', + shouldClose = true, + label = 'Munky Juice', + name = 'munky_juice', + }, + weapontint_mk2_22 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Blue & White Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Blue & White Tint', + name = 'weapontint_mk2_22', + }, + largescope_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A large scope for a weapon', + image = 'largescope_attachment.png', + shouldClose = true, + label = 'Large Scope', + name = 'largescope_attachment', + }, + ceramic_barrel = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Der Lauf, der sich in jeder Sicherheitskontrolle unsichtbar macht', + image = 'keramiklauf.png', + shouldClose = false, + label = 'Keramiklauf', + name = 'ceramic_barrel', + }, + chemiebarrel = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'chemie.png', + shouldClose = false, + label = 'Chemie Fass', + name = 'chemiebarrel', + }, + shovel = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '', + image = 'shovel.png', + shouldClose = false, + label = 'Schaufel', + name = 'shovel', + }, + small_blade = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = ' Die Klinge, die nicht auf sich warten lässt', + image = 'Klinge Springmesser.png', + shouldClose = false, + label = 'kleine Klinge', + name = 'small_blade', + }, + purple_phone = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '„Jetzt mit noch mehr Features, die du nie brauchst, aber jedem zeigen musst.“', + image = 'purple_phone.png', + shouldClose = false, + label = 'iFruit 12XR Lila', + name = 'purple_phone', + }, + stickynote = { + useable = false, + weight = 0, + type = 'item', + unique = true, + description = 'Sometimes handy to remember something :)', + image = 'stickynote.png', + shouldClose = false, + label = 'Sticky note', + name = 'stickynote', + }, + packing_bandage = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_478-removebg-preview.png', + shouldClose = true, + label = 'Verbandpäckchen', + name = 'packing_bandage', + }, + cigar = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cigar.png', + shouldClose = false, + label = 'Zigarre', + name = 'cigar', + }, + sifs_olden_harvest = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'SifsGoldenHarvest.png', + shouldClose = true, + label = 'Sifs Golden Harvest', + name = 'sifs_olden_harvest', + }, + bubble_tea = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Bubble Tea – das einzige Getränk, bei dem man sich fragt, ob man gerade trinkt, snackt oder ein Kinderspielzeug schlürft!', + image = 'bubble_tea.png', + shouldClose = true, + label = 'Bubble Tea', + name = 'bubble_tea', + }, + bbq_seasoning = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'bbq_seasoning.png', + shouldClose = true, + label = 'BBQ Gewürze', + name = 'bbq_seasoning', + }, + ezme = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'ezme.png', + shouldClose = true, + label = 'Ezme', + name = 'ezme', + }, + smallscope_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A small scope for a weapon', + image = 'smallscope_attachment.png', + shouldClose = true, + label = 'Small Scope', + name = 'smallscope_attachment', + }, + gg_rabbit_pelt_02 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_rabbit_pelt_02.png', + shouldClose = true, + label = 'Robustes Kaninchenfell', + name = 'gg_rabbit_pelt_02', + }, + tyre_replacement = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'die Premium Schuhe der Kraftfahrzeuge', + image = 'tyre_replacement.png', + shouldClose = true, + label = 'Premium Reifen', + name = 'tyre_replacement', + }, + sniper_grip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'ar_grip.png', + shouldClose = true, + label = 'Marksmangewehr Griff', + name = 'sniper_grip', + }, + dins_isdom_latter = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Eine herzhafte Mischung, die den Wissensdurst und die Abenteuerlust des Göttervaters befriedigt.', + image = 'OdinsWisdomPlatter.png', + shouldClose = true, + label = 'Odin\'s Wisdom Platter', + name = 'dins_isdom_latter', + }, + zebracamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A zebra camo for a weapon', + image = 'zebracamo_attachment.png', + shouldClose = true, + label = 'Zebra Camo', + name = 'zebracamo_attachment', + }, + gg_boar_tusk_01 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_boar_tusk_01.png', + shouldClose = true, + label = 'Rauer Eberzahn', + name = 'gg_boar_tusk_01', + }, + weapontint_mk2_18 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Green Features Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Green Features Tint', + name = 'weapontint_mk2_18', + }, + digicamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A digital camo for a weapon', + image = 'digicamo_attachment.png', + shouldClose = true, + label = 'Digital Camo', + name = 'digicamo_attachment', + }, + weapon_handcuffs = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A pair of lockable linked metal rings for securing a prisoner\'s wrists', + name = 'weapon_handcuffs', + label = 'Handcuffs', + image = 'weapon_handcuffs.png', + }, + pelmini = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Kleine Teigtaschen, große Gefühle – Pelmeni lieben dich zurück!', + image = 'pelmini.png', + shouldClose = true, + label = 'Pelmini', + name = 'pelmini', + }, + weapon_candycane = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Candy Cane', + name = 'weapon_candycane', + label = 'Candy Cane', + image = 'weapon_candycane', + }, + raw_turkey_drums = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'raw_turkey_drums.png', + shouldClose = true, + label = 'rohe Putenkeulen', + name = 'raw_turkey_drums', + }, + weapon_sawnoffshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A sawn-off smoothbore gun for firing small shot at short range', + image = 'weapon_sawnoffshotgun.png', + label = 'Sawn-off Shotgun', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_sawnoffshotgun', + }, + veh_brakes = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle brakes', + image = 'veh_brakes.png', + shouldClose = true, + label = 'Brakes', + name = 'veh_brakes', + }, + shotgun_grip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'grip_attachment.png', + shouldClose = true, + label = 'Shotgun Griff', + name = 'shotgun_grip', + }, + tilidin = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'syringe.png', + shouldClose = true, + label = 'Tilidin', + name = 'tilidin', + }, + sessantacamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A sessanta nove camo for a weapon', + image = 'sessantacamo_attachment.png', + shouldClose = true, + label = 'Sessanta Nove Camo', + name = 'sessantacamo_attachment', + }, + tenkgoldchain = { + useable = false, + weight = 2000, + type = 'item', + unique = false, + description = '10 carat golden chain', + image = '10kgoldchain.png', + shouldClose = true, + label = '10k Gold Chain', + name = 'tenkgoldchain', + }, + h_choclate = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'h_choclate.png', + shouldClose = true, + label = 'Heiße Schokolade', + name = 'h_choclate', + }, + weapon_heavysniper = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An upgraded high-precision, long-range rifle', + image = 'weapon_heavysniper.png', + label = 'Heavy Sniper', + ammotype = 'AMMO_SNIPER', + name = 'weapon_heavysniper', + }, + big_bottle_tide = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = '', + image = 'big_bottle_tide.png', + shouldClose = true, + label = 'große Flasche Orange O Tang', + name = 'big_bottle_tide', + }, + pipe = { + useable = true, + weight = 400, + type = 'item', + unique = true, + description = '', + image = 'pipe.png', + shouldClose = false, + label = 'Pfeife', + name = 'pipe', + }, + sprunk_zero_dose = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = 'Dose Zitronen Limo', + image = 'sprunk_zero_dose.png', + shouldClose = true, + label = 'Sprunk Zero Dose', + name = 'sprunk_zero_dose', + }, + steel = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Nice piece of metal that you can probably use for something', + image = 'steel.png', + shouldClose = false, + label = 'Stahl', + name = 'steel', + }, + rifle_drum = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'drum_attachment.png', + shouldClose = true, + label = 'Gewehr Trommelmagzin', + name = 'rifle_drum', + }, + kunfe = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'kunfe.png', + shouldClose = true, + label = 'Künefe', + name = 'kunfe', + }, + korb = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '', + image = 'korb.png', + shouldClose = false, + label = 'Korb', + name = 'korb', + }, + placebo = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'placebo.png', + shouldClose = true, + label = 'Placebo', + name = 'placebo', + }, + cocoa = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Kakaopulver ist Schokolade im Tarnanzug – bereit, jede Tasse in Wohlfühlzauber zu verwandeln.', + image = 'cacao.png', + shouldClose = false, + label = 'Packung Kakaopulver', + name = 'cocoa', + }, + tavor25 = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'tavor25.png', + shouldClose = true, + label = 'Tavor 2,5 mg', + name = 'tavor25', + }, + weapontint_mk2_0 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Black Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Black Tint', + name = 'weapontint_mk2_0', + }, + weapon_combatpistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Eine kompakte, zuverlässige 9mm-Dienstpistole mit 17 Schuss Magazin.', + image = 'screenshot_434-removebg-preview.png', + label = 'Bretta Storm', + ammotype = 'AMMO_PISTOL', + name = 'weapon_combatpistol', + }, + firstaid = { + useable = true, + weight = 2500, + type = 'item', + unique = false, + description = 'You can use this First Aid kit to get people back on their feet', + image = 'firstaid.png', + shouldClose = true, + label = 'First Aid', + name = 'firstaid', + }, + vitaminloesung = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Vitaminlösung 100', + name = 'vitaminloesung', + }, + newspaper = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'zum Nachschlagen ^^', + image = 'newspaper.png', + shouldClose = true, + label = 'Zeitung', + name = 'newspaper', + }, + weapon_pipebomb = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A homemade bomb, the components of which are contained in a pipe', + name = 'weapon_pipebomb', + label = 'Pipe Bomb', + image = 'weapon_pipebomb.png', + }, + sd_card = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'sd_card.png', + shouldClose = false, + label = 'SD Karte', + name = 'sd_card', + }, + squared_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'squared_muzzle_brake.png', + shouldClose = true, + label = 'Squared Muzzle Brake', + name = 'squared_muzzle_brake', + }, + veh_transmission = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle transmission', + image = 'veh_transmission.png', + shouldClose = true, + label = 'Transmission', + name = 'veh_transmission', + }, + lidocain = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'Lidocain.png', + shouldClose = true, + label = 'Lidocain', + name = 'lidocain', + }, + gg_hunting_meat = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'gg_hunting_meat.png', + shouldClose = true, + label = 'rohes Wildfleisch', + name = 'gg_hunting_meat', + }, + gg_cougar_claw_01 = { + useable = false, + weight = 500, + type = 'item', + unique = true, + description = '', + image = 'gg_cougar_claw_01.png', + shouldClose = true, + label = 'Raue Puma-Klaue', + name = 'gg_cougar_claw_01', + }, + radioscanner = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'With this you can get some police alerts. Not 100% effective however', + image = 'radioscanner.png', + shouldClose = true, + label = 'Radio Scanner', + name = 'radioscanner', + }, + boxapplejuice = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'boxapplejuice.png', + shouldClose = false, + label = 'Kiste Apfelsaft', + name = 'boxapplejuice', + }, + geocamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A geometric camo for a weapon', + image = 'geocamo_attachment.png', + shouldClose = true, + label = 'Geometric Camo', + name = 'geocamo_attachment', + }, + twerks_candy = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'It\'s all about you.', + image = 'twerks_candy.png', + shouldClose = true, + label = 'Ego Chaser Schockriegel', + name = 'twerks_candy', + }, + gg_deer_hide_03 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_deer_hide_03.png', + shouldClose = true, + label = 'Makelloses Hirschfell', + name = 'gg_deer_hide_03', + }, + orange_o_tang_dose = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = 'Dose Orangen Limo', + image = 'orange_o_tang_dose.png', + shouldClose = true, + label = 'Orange O Tang Dose', + name = 'orange_o_tang_dose', + }, + j_and_js = { + useable = true, + weight = 150, + type = 'item', + unique = true, + description = 'Kleine, bunte Schockodrops mit knackiger Hülle und weichem Kern', + image = 'ChatGPT_Image_27._Apr._2025__12_06_23-removebg-preview.png', + shouldClose = true, + label = 'J&J’s', + name = 'j_and_js', + }, + weapon_hammer = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Used for jobs such as breaking things (legs) and driving in nails', + name = 'weapon_hammer', + label = 'Hammer', + image = 'weapon_hammer.png', + }, + raw_beef_brisket = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'raw_beef_brisket.png', + shouldClose = true, + label = 'rohes Beef Brisket', + name = 'raw_beef_brisket', + }, + gg_coyote_fangs_02 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_coyote_fangs_02.png', + shouldClose = true, + label = 'guter Kojotenzahn', + name = 'gg_coyote_fangs_02', + }, + jords_ea_latter = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Frisch aus dem Meer, diese Meeresfrüchte erinnern an Njords Verbindung zu den stürmischen Wellen der nordischen Meere.', + image = 'NjordsSeaPlatter.png', + shouldClose = true, + label = 'Njord\'s Sea Platter', + name = 'njords_sea_platter', + }, + young_salmon = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'young_salmon.png', + shouldClose = false, + label = 'junger Lachs', + name = 'young_salmon', + }, + dwurstmskraut = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'Deckelwurst_mit_Sauerkraft-removebg-preview.png', + shouldClose = false, + label = 'Dackelwurst mit Sauerkraut', + name = 'dwurstmskraut', + }, + kayas_rotwein = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Türkischer Rotwein', + image = 'kirimzi.png', + shouldClose = true, + label = 'Kırmızı şarap ', + name = 'kayas_rotwein', + }, + thors_sandwich = { + useable = true, + weight = 150, + type = 'item', + unique = false, + description = 'So kraftvoll wie Thors Hammerschlag, dieses Sandwich ist eine herzhafte Kombination aus intensiven Aromen und sättigender Substanz. Perfekt für einen echten Wikinger-Appetit.', + image = 'thors_sandwich.png', + shouldClose = true, + label = 'Thors Sandwich', + name = 'thors_sandwich', + }, + cerveza_barracho = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Erfrischendes mexikanisches Bier mit vollmundigem Geschmack', + image = 'ChatGPT Image 26. Apr. 2025, 15_29_53-min.png', + shouldClose = true, + label = 'Cerveza Barracho', + name = 'cerveza_barracho', + }, + veh_neons = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle neons', + image = 'veh_neons.png', + shouldClose = true, + label = 'Neons', + name = 'veh_neons', + }, + weapon_bread = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Bread...?', + name = 'weapon_bread', + label = 'Baquette', + image = 'baquette.png', + }, + log = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = '', + image = 'wood_scraps.png', + shouldClose = false, + label = 'Holzscheit', + name = 'log', + }, + campers_fuel = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'ein Campers am morgen vertreibt Kummer und Sorgen', + image = 'campers_fuel.png', + shouldClose = true, + label = 'Campers Fuel', + name = 'campers_fuel', + }, + pistol_flashlight = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'flashlight_attachment.png', + shouldClose = true, + label = 'Pistolenlicht', + name = 'pistol_flashlight', + }, + rifle_suppressor = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'suppressor_attachment.png', + shouldClose = true, + label = 'Gewehr Schalldämpfer', + name = 'rifle_suppressor', + }, + weapon_handle = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Der perfekte Halt – für dich und deine Waffen-Fantasien', + image = 'snspistol_part_3.png', + shouldClose = false, + label = 'Griff', + name = 'weapon_handle', + }, + juice = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Wenn hier Anna nass macht dann bin ICH das !!!!', + image = 'juice.png', + shouldClose = true, + label = 'Saft', + name = 'juice', + }, + weapon_assaultshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An assault version of asmoothbore gun for firing small shot at short range', + image = 'weapon_assaultshotgun.png', + label = 'Assault Shotgun', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_assaultshotgun', + }, + kobolbrolle = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'kobolbrolle.png', + shouldClose = false, + label = 'Kobolbrolle', + name = 'kobolbrolle', + }, + awd_drivetrain = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'awd_drivetrain.png', + shouldClose = true, + label = 'AWD', + name = 'awd_drivetrain', + }, + sniper_scope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'largescope_attachment.png', + shouldClose = true, + label = 'Sniper Visier', + name = 'sniper_scope', + }, + weapon_crowbar = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An iron bar with a flattened end, used as a lever', + name = 'weapon_crowbar', + label = 'Crowbar', + image = 'weapon_crowbar.png', + }, + machete_blade = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Wenn du mehr als nur ein bisschen Durchblick brauchst – sie räumt den Weg frei', + image = 'Machetenklinge.png', + shouldClose = false, + label = 'Machete Klinge', + name = 'machete_blade', + }, + shotgun_scope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'smallscope_attachment.png', + shouldClose = true, + label = 'MK2 Shotgun Visier', + name = 'shotgun_scope', + }, + gatecrack = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Handy software to tear down some fences', + image = 'usb_device.png', + shouldClose = true, + label = 'Gatecrack', + name = 'gatecrack', + }, + brakepad_replacement = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'brakepad_replacement.png', + shouldClose = true, + label = 'Premium Bremsenteile', + name = 'brakepad_replacement', + }, + weapontint_mk2_28 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Green Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Green Tint', + name = 'weapontint_mk2_28', + }, + zwiebelsalat = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Türkischer Zwiebelsalat', + image = 'sogan.png', + shouldClose = true, + label = 'Soğan salatası', + name = 'zwiebelsalat', + }, + boxorangejuice = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'boxorangejuice.png', + shouldClose = false, + label = 'Kiste Orangensaft', + name = 'boxorangejuice', + }, + shaft = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Schaft: Der ruhige Held der Waffe – immer da, wenn man ihn braucht, aber nie im Mittelpunkt', + image = 'ar_grip.png', + shouldClose = false, + label = 'Waffenschaft', + name = 'shaft', + }, + manti = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'manti.png', + shouldClose = true, + label = 'Manti', + name = 'manti', + }, + nightvision = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'nightvision.png', + shouldClose = true, + label = 'Nachtsichtgerät', + name = 'nightvision', + }, + opium = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Chillfilter fürs Leben – aber Vorsicht, klebrig', + image = 'opium_dry2.png', + shouldClose = false, + label = 'Opium', + name = 'opium', + }, + respray_kit = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'Perfekt für die schnelle Ausbesserung des Kleides', + image = 'respray_kit.png', + shouldClose = true, + label = 'Lack Spraydose', + name = 'respray_kit', + }, + weapon_pistol50 = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Für alle, die denken, normale Pistolen fühlen sich einfach zu sehr nach Spielzeug an.', + image = 'tropical_eagle.png', + label = 'Tropical Eagle', + ammotype = 'AMMO_PISTOL', + name = 'weapon_pistol50', + }, + i4_engine = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'i4_engine.png', + shouldClose = true, + label = 'I4 Motor', + name = 'i4_engine', + }, + rwd_drivetrain = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'rwd_drivetrain.png', + shouldClose = true, + label = 'RWD', + name = 'rwd_drivetrain', + }, + roofbox_carbon = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'roofbox_carbon.png', + shouldClose = true, + label = 'Carbon Dachbox', + name = 'roofbox_carbon', + }, + weapontint_6 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Orange Weapon Tint', + image = 'weapontint_orange.png', + shouldClose = true, + label = 'Orange Tint', + name = 'weapontint_6', + }, + salmon = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'salmon.png', + shouldClose = true, + label = 'Lachs', + name = 'salmon', + }, + veh_exterior = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle exterior', + image = 'veh_exterior.png', + shouldClose = true, + label = 'Exterior', + name = 'veh_exterior', + }, + amoxicillin = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'amoxicillin.png', + shouldClose = true, + label = 'Amoxicillin', + name = 'amoxicillin', + }, + switchblade_mechanism = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Der flinke Schalter – ein Klick, und das Messer ist blitzschnell auf dem Sprung', + image = 'weapon_parts2.png', + shouldClose = false, + label = 'Mechanismus für Springmesser', + name = 'switchblade_mechanism', + }, + cup_tide = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cup_tide.png', + shouldClose = true, + label = 'Becher Orange O Tang', + name = 'cup_tide', + }, + weapon_hominglauncher = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A weapon fitted with an electronic device that enables it to find and hit a target', + image = 'weapon_hominglauncher.png', + label = 'Homing Launcher', + ammotype = 'AMMO_STINGER', + name = 'weapon_hominglauncher', + }, + heroin_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'heroin_route.png', + shouldClose = false, + label = 'Heroin Route', + name = 'heroin_route', + }, + kakao = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Eine heiße, süße Tasse Schokolade – perfekt zum Entspannen oder Aufwärmen an kühlen Tagen.', + image = 'kakao.png', + shouldClose = true, + label = 'Kakao Togo', + name = 'kakao', + }, + barrel = { + useable = false, + weight = 2000, + type = 'item', + unique = true, + description = '', + image = 'barrel.png', + shouldClose = false, + label = 'leeres Metallfass', + name = 'barrel', + }, + worm_bait = { + useable = true, + weight = 2, + type = 'item', + unique = false, + description = '', + image = 'worm_bait.png', + shouldClose = false, + label = 'Regenwurm', + name = 'worm_bait', + }, + paracetamol = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'Paracetamol.png', + shouldClose = true, + label = 'Paracetamol', + name = 'paracetamol', + }, + ecola_zero_dose = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = 'Dose Cola', + image = 'ecolazerocan.png', + shouldClose = true, + label = 'E-Cola Zero Dose', + name = 'ecola_zero_dose', + }, + oilbarrel = { + useable = false, + weight = 6000, + type = 'item', + unique = true, + description = '', + image = 'oilbarrel.png', + shouldClose = false, + label = 'Erdölfass', + name = 'oilbarrel', + }, + weapon_carbinerifle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Der beste Freund eines Cops, wenn Funk und Pfefferspray nicht mehr reichen.', + image = 'ar15.png', + label = 'AR 15', + ammotype = 'AMMO_RIFLE', + name = 'weapon_carbinerifle', + }, + salad = { + useable = false, + weight = 200, + type = 'item', + unique = true, + description = '', + image = 'salad.png', + shouldClose = false, + label = 'Eisbergsalat', + name = 'salad', + }, + engine_oil = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'Das bier der Kraftfahrzeuge!', + image = 'engine_oil.png', + shouldClose = true, + label = 'Premium Motoröl', + name = 'engine_oil', + }, + weapon_musket = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An infantryman\'s light gun with a long barrel, typically smooth-bored, muzzleloading, and fired from the shoulder', + image = 'weapon_musket.png', + label = 'Musket', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_musket', + }, + lahmacun = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Fladenbrot mit einer würzigen Mischung aus Hackfleisch, Zwiebeln, Tomaten und Olivenöl', + image = 'lahmacun.png', + shouldClose = true, + label = 'Lahmacun', + name = 'lahmacun', + }, + rifle_scope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'smallscope_attachment.png', + shouldClose = true, + label = 'Gewehrvisier', + name = 'rifle_scope', + }, + axe_head = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Der schneidige Bruder der Säge', + image = 'Axtkopf.png', + shouldClose = false, + label = 'Axt Kopf', + name = 'axe_head', + }, + kuzu_sis = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Lammkebab mit Beilagen', + image = 'Kuzu_sis.png', + shouldClose = true, + label = 'Kuzu Sis', + name = 'kuzu_sis', + }, + weapon_gusenberg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = ' das Original aus der goldenen Ära der Gangster', + image = 'screenshot_412-removebg-preview.png', + label = 'Gusenberg Sweeper', + ammotype = 'AMMO_MG', + name = 'weapon_gusenberg', + }, + aluminum = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Nice piece of metal that you can probably use for something', + image = 'aluminum.png', + shouldClose = false, + label = 'Aluminium', + name = 'aluminum', + }, + weed_whitewidow_seed = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A weed seed of White Widow', + image = 'weed_seed.png', + shouldClose = false, + label = 'White Widow Seed', + name = 'weed_whitewidow_seed', + }, + gussform = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gussform.png', + shouldClose = false, + label = 'Gussform ', + name = 'gussform', + }, + sugarbeet = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = '', + image = 'rube.png', + shouldClose = false, + label = 'Zuckerrübe', + name = 'sugarbeet', + }, + heroin_injection = { + useable = true, + weight = 750, + type = 'item', + unique = false, + description = 'Der schnellste Weg ins Nirwana, aber der Ausgang ist unsichtbar', + image = 'dirtyneedle.png', + shouldClose = true, + label = 'Heroinspritze', + name = 'heroin_injection', + }, + tunerlaptop = { + useable = true, + weight = 2000, + type = 'item', + unique = true, + description = 'With this tunerchip you can get your car on steroids... If you know what you\'re doing', + image = 'tunerchip.png', + shouldClose = true, + label = 'Tunerchip', + name = 'tunerlaptop', + }, + cigs = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cigs.png', + shouldClose = true, + label = 'Zigarette', + name = 'cigs', + }, + beerkeg = { + useable = true, + weight = 600, + type = 'item', + unique = true, + description = '', + image = 'beerkeg.png', + shouldClose = true, + label = 'Bierfass', + name = 'beerkeg', + }, + quickclot = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = '40053-QuikClot-Combat-Gauze-01-removebg-preview.png', + shouldClose = true, + label = 'Wundschnellverband', + name = 'quickclot', + }, + acetic = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Küchenessenz für Chemieprofis', + image = 'acetone2.png', + shouldClose = false, + label = 'Essiganhydrid', + name = 'acetic', + }, + bcso_card = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = '', + image = 'police_card.png', + shouldClose = true, + label = 'BCSO Dienstausweis', + name = 'bcso_card', + }, + kadis_inter_kewers = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'SkadisWinterSkewers.png', + shouldClose = true, + label = 'Skadi\'s Winter Skewers', + name = 'skadis_winter_skewers', + }, + coffee_beans = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'coffee_beans.png', + shouldClose = false, + label = 'Packung Kaffeepulver', + name = 'coffee_beans', + }, + gg_salt_block_02 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'gg_salt_block_02.png', + shouldClose = true, + label = 'besserer Salzblock', + name = 'gg_salt_block_02', + }, + sweets_candies = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Bunt, süß und manchmal klebrig', + image = 'candy1.png', + shouldClose = true, + label = 'Bonbons', + name = 'sweets_candies', + }, + fitbit = { + useable = true, + weight = 500, + type = 'item', + unique = true, + description = 'I like fitbit', + image = 'fitbit.png', + shouldClose = true, + label = 'Fitbit', + name = 'fitbit', + }, + shotgun_suppressor = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'suppressor_attachment.png', + shouldClose = true, + label = 'Shotgun Schalldämpfer', + name = 'shotgun_suppressor', + }, + veh_engine = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle engine', + image = 'veh_engine.png', + shouldClose = true, + label = 'Engine', + name = 'veh_engine', + }, + grip_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A grip for a weapon', + image = 'grip_attachment.png', + shouldClose = true, + label = 'Grip', + name = 'grip_attachment', + }, + weapon_stickybomb = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An explosive charge covered with an adhesive that when thrown against an object sticks until it explodes', + name = 'weapon_stickybomb', + label = 'C4', + image = 'weapon_stickybomb.png', + }, + rolex = { + useable = false, + weight = 1500, + type = 'item', + unique = false, + description = 'A golden watch seems like the jackpot to me!', + image = 'rolex.png', + shouldClose = true, + label = 'Golden Watch', + name = 'rolex', + }, + jords_cean_reeze_alkoholfrei = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Eine kühle Meeresbrise in Form eines Getränks, die erfrischend und exotisch zugleich ist.', + image = 'NjordsOceanBreeze.png', + shouldClose = true, + label = 'Njord\'s Ocean Breeze (alkoholfrei)', + name = 'njords_ocean_breeze_alkoholfrei', + }, + ffries = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '"Jetzt mit 0 % Kartoffel, 100 % Patriotismus!"', + image = 'screenshot_686-removebg-preview.png', + shouldClose = true, + label = 'Freedom Fries', + name = 'ffries', + }, + weapontint_mk2_12 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Orange Contrast Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Orange Contrast Tint', + name = 'weapontint_mk2_12', + }, + small_triggersystem = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Winzig, aber mächtig – ein kleiner Klick und die Action geht los', + image = 'trigger2.png', + shouldClose = false, + label = 'kleines Abzugssystem', + name = 'small_triggersystem', + }, + whiskeywickel = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = '', + image = 'whiskeywickel.png', + shouldClose = false, + label = 'Whiskeywickel', + name = 'whiskeywickel', + }, + pralinen = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Damit Sie dich mal wieder ranlässt...', + image = 'pralinen.png', + shouldClose = true, + label = 'Pralinen', + name = 'pralinen', + }, + drytobbacoleaf = { + useable = false, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'drietobbacoleaf.png', + shouldClose = false, + label = 'getrocknetes Tabakblatt', + name = 'drytobbacoleaf', + }, + id_card = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = 'A card containing all your information to identify yourself', + image = 'id_card.png', + shouldClose = false, + label = 'ID Card', + name = 'id_card', + }, + flour = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'flour.png', + shouldClose = false, + label = 'Packung Mehl ', + name = 'flour', + }, + vitaminloesung_250 = { + useable = true, + weight = 250, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Vitaminlösung 250', + name = 'vitaminloesung_250', + }, + tyre_smoke_kit = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'tyre_smoke_kit.png', + shouldClose = true, + label = 'Reifenrauch Kit', + name = 'tyre_smoke_kit', + }, + veh_xenons = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Upgrade vehicle xenons', + image = 'veh_xenons.png', + shouldClose = true, + label = 'Xenons', + name = 'veh_xenons', + }, + weapon_flaregun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A handgun for firing signal rockets', + image = 'weapon_flaregun.png', + label = 'Flare Gun', + ammotype = 'AMMO_FLARE', + name = 'weapon_flaregun', + }, + driver_license = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = 'Permit to show you can drive a vehicle', + image = 'driver_license.png', + shouldClose = false, + label = 'Drivers License', + name = 'driver_license', + }, + meth_pipe = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Leere Pfeife zum möglichen Glück was keins ist', + image = 'Meth pfeife.png', + shouldClose = false, + label = 'Leere Methpfeife', + name = 'meth_pipe', + }, + lsd_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'lsd_route.png', + shouldClose = false, + label = 'LSD Route', + name = 'lsd_route', + }, + bodybag = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'bodybag.png', + shouldClose = true, + label = 'Leichensack', + name = 'bodybag', + }, + fenystil = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'fenystil.png', + shouldClose = true, + label = 'Fenistil', + name = 'fenystil', + }, + kas_leberkas_semmal = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Mehr Fleisch als Worte – des is koa Semmel, des is a Lebensgefühl!', + image = 'kas_leberkas_semmal.png', + shouldClose = true, + label = 'Kas Leberkas Semmal', + name = 'kas_leberkas_semmal', + }, + gg_coyote_fangs_03 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_coyote_fangs_03.png', + shouldClose = true, + label = 'Makelloser Kojotenzahn', + name = 'gg_coyote_fangs_03', + }, + cleaning_kit = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Für die schnelle Reinigung', + image = '', + shouldClose = false, + label = 'Premium Putzlappen ', + name = 'cleaning_kit', + }, + rifle_flashlight = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'flashlight_attachment.png', + shouldClose = true, + label = 'Gewehrlicht', + name = 'rifle_flashlight', + }, + painkillers = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'For pain you can\'t stand anymore, take this pill that\'d make you feel great again', + image = 'painkillers.png', + shouldClose = true, + label = 'Painkillers', + name = 'painkillers', + }, + stancing_kit = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'stancing_kit.png', + shouldClose = true, + label = 'Stancing Kit', + name = 'stancing_kit', + }, + packtobbaco = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'packtobbaco.png', + shouldClose = false, + label = 'Packung Tabak', + name = 'packtobbaco', + }, + freshtobbacoleaf = { + useable = false, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'freshtobbacoleaf.png', + shouldClose = false, + label = 'frisches Tabakblatt', + name = 'freshtobbacoleaf', + }, + hundefutter = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Futter für Hunde', + image = 'dogfood.png', + shouldClose = true, + label = 'Hundefutter', + name = 'hundefutter', + }, + ggdrasils_ssence = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Erdend und zugleich erfrischend, dieses Getränk bringt die Essenz des Weltenbaums direkt ins Glas.', + image = 'YggdrasilsEssence.png', + shouldClose = true, + label = 'Yggdrasil\'s Essence', + name = 'ggdrasils_ssence', + }, + weapon_heavyshotgun = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A large smoothbore gun for firing small shot at short range', + image = 'weapon_heavyshotgun.png', + label = 'Heavy Shotgun', + ammotype = 'AMMO_SHOTGUN', + name = 'weapon_heavyshotgun', + }, + heavyarmor = { + useable = true, + weight = 5000, + type = 'item', + unique = false, + description = 'Some protection won\'t hurt... right?', + image = 'armor.png', + shouldClose = true, + label = 'Verstärkte Kugelsischere Weste', + name = 'heavyarmor', + }, + thiopental = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Thiopental', + name = 'thiopental', + }, + macrons = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = 'bunte Leckerbissen, die den Gaumen mit süßer Freude verzaubern', + image = 'macrons.png', + shouldClose = true, + label = 'Macrons', + name = 'macrons', + }, + opium_poppy = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Die Blume, die Träume verkauft', + image = 'opium_dry.png', + shouldClose = false, + label = 'Schlafmohn', + name = 'opium_poppy', + }, + weapontint_mk2_26 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Purple & Lime Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Purple & Lime Tint', + name = 'weapontint_mk2_26', + }, + vehicletrackerscanner = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'vehicletrackerscanner.png', + shouldClose = true, + label = 'Fahrzeugtracker Scanner', + name = 'vehicletrackerscanner', + }, + pistol_defaultclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'clip_attachment.png', + shouldClose = true, + label = 'Pistolen Magazin', + name = 'pistol_defaultclip', + }, + fentanyl = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'fentanyl-removebg-preview.png', + shouldClose = true, + label = 'Fentanyl', + name = 'fentanyl', + }, + sludgie = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Gefrorene Chemie zum Trinken ^^', + image = 'sludgie.png', + shouldClose = true, + label = 'Sludgie', + name = 'sludgie', + }, + weed_ogkush_seed = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A weed seed of OG Kush', + image = 'weed_seed.png', + shouldClose = true, + label = 'OGKush Seed', + name = 'weed_ogkush_seed', + }, + perseuscamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A perseus camo for a weapon', + image = 'perseuscamo_attachment.png', + shouldClose = true, + label = 'Perseus Camo', + name = 'perseuscamo_attachment', + }, + whiskey = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'For all the thirsty out there', + image = 'whiskey.png', + shouldClose = true, + label = 'Whiskey', + name = 'whiskey', + }, + pd_keycard = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Wenn du kein Cop bist Finger weg!', + image = 'pd_keycard.png', + shouldClose = false, + label = 'PD Key Card', + name = 'pd_keycard', + }, + weapontint_mk2_14 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Purple & Yellow Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Purple & Yellow Tint', + name = 'weapontint_mk2_14', + }, + dildo = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'passt gut zum Gleitgel ^^', + image = 'dildo.png', + shouldClose = true, + label = 'Dildo', + name = 'dildo', + }, + security_card_01 = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A security card... I wonder what it goes to', + image = 'security_card_01.png', + shouldClose = true, + label = 'Security Card A', + name = 'security_card_01', + }, + gg_hunting_rifleammo = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'gg_hunting_rifleammo.png', + shouldClose = true, + label = 'Jagdgewehr Munition', + name = 'gg_hunting_rifleammo', + }, + sarma = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'sarma.png', + shouldClose = true, + label = 'Sarma', + name = 'sarma', + }, + raw_wings = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'raw_wings.png', + shouldClose = true, + label = 'rohe Chickenwings', + name = 'raw_wings', + }, + mechanic_tablet = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'Das wichtigste Werkzeug', + image = 'mechanic_tablet.png', + shouldClose = false, + label = 'Petrol Head Tablet', + name = 'mechanic_tablet', + }, + cc_espresso = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'cc_espresso.png', + shouldClose = true, + label = 'Espresso', + name = 'cc_espresso', + }, + blood_1000 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'blood_100.png', + shouldClose = true, + label = 'Blut (1000ml)', + name = 'blood_1000', + }, + weapon_huntingrifle = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = '', + image = 'weapon_huntingrifle.png', + shouldClose = true, + label = 'Jagdgewehr', + name = 'weapon_huntingrifle', + }, + weapon_doubleaction = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Moderner Revolver um auf Städter zu schießen und was sich sonst noch so bewegt ^^', + image = 'revolver2.png', + label = ' Revolver', + ammotype = 'AMMO_PISTOL', + name = 'weapon_doubleaction', + }, + basketball = { + useable = false, + weight = 400, + type = 'item', + unique = true, + description = '', + image = 'basketball.png', + shouldClose = false, + label = 'Basketball', + name = 'basketball', + }, + kadis_rostbite = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Erfrischend und frostig, wie die kalte Winterluft in Skadis schneebedeckten Bergen.', + image = 'SkadisFrostbite.png', + shouldClose = true, + label = 'Skadi\'s Frostbite', + name = 'kadis_rostbite', + }, + pump = { + useable = false, + weight = 2000, + type = 'item', + unique = true, + description = '', + image = 'pump.png', + shouldClose = false, + label = 'Akku Pumpe', + name = 'pump', + }, + weapon_marksmanrifle_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Marksmanrifle MK2', + image = 'huntingrifle2.png', + label = 'Marksman Rifle Mk II', + ammotype = 'AMMO_SNIPER', + name = 'weapon_marksmanrifle_mk2', + }, + soda_machine = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'soda_machine.png', + shouldClose = true, + label = 'Abfüllstation', + name = 'soda_machine', + }, + coke_brick = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = 'Heavy package of cocaine, mostly used for deals and takes a lot of space', + image = 'coke_brick.png', + shouldClose = true, + label = 'Coke Brick', + name = 'coke_brick', + }, + butcherknife = { + useable = false, + weight = 400, + type = 'item', + unique = true, + description = '', + image = 'butcherknife.png', + shouldClose = false, + label = 'Schlachtermesser', + name = 'butcherknife', + }, + ecola = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', + image = 'ecola.png', + shouldClose = true, + label = 'E-Cola Softdrink', + name = 'ecola', + }, + newscam = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'A camera for the news', + image = 'newscam.png', + shouldClose = true, + label = 'News Camera', + name = 'newscam', + }, + drift_tuning_kit = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'drift_tuning_kit.png', + shouldClose = true, + label = 'Driftkit', + name = 'drift_tuning_kit', + }, + stoff = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'stoff.png', + shouldClose = false, + label = 'Stoff ', + name = 'stoff', + }, + chainsaw = { + useable = false, + weight = 600, + type = 'item', + unique = true, + description = 'Fichtenmoped..... Benzinbiber..... ', + image = 'chainsaw.png', + shouldClose = false, + label = 'Kettensäge', + name = 'chainsaw', + }, + smg_flashlight = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'flashlight_attachment.png', + shouldClose = true, + label = 'SMG Licht', + name = 'smg_flashlight', + }, + reinforced_handle = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Der Bodybuilder unter den Griffen', + image = 'Verstaerktergriff.png', + shouldClose = false, + label = 'Verstärkter Griff', + name = 'reinforced_handle', + }, + gun_handle = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Dein persönlicher Halt – stärker als jeder Nervenkitzel', + image = 'empu.png', + shouldClose = false, + label = 'Griffstück', + name = 'gun_handle', + }, + ephedrin = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Deine Eintrittskarte zu einem Adrenalinschub', + image = 'ephedrine.png', + shouldClose = true, + label = 'Ephedrin Tabletten', + name = 'ephedrin', + }, + weapon_machete = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A broad, heavy knife used as a weapon', + name = 'weapon_machete', + label = 'Machete', + image = 'machete.png', + }, + nitrous = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Speed up, gas pedal! :D', + image = 'nitrous.png', + shouldClose = true, + label = 'Nitrous', + name = 'nitrous', + }, + vitaminloesung_1000 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'screenshot_696-removebg-preview.png', + shouldClose = true, + label = 'Vitaminlösung 1000', + name = 'vitaminloesung_1000', + }, + weapon_revolver = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A pistol with revolving chambers enabling several shots to be fired without reloading', + image = 'revolver.png', + label = 'Tac. Revolver', + ammotype = 'AMMO_PISTOL', + name = 'weapon_revolver', + }, + weapon_bottle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A broken bottle', + name = 'weapon_bottle', + label = 'Broken Bottle', + image = 'weapon_bottle.png', + }, + weapon_marksmanrifle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = '... die Sonntagsjäger fahrn in den Touristenwald ...', + image = 'screenshot_395-removebg-preview.png', + label = 'Besseres Jagdgewehr', + ammotype = 'AMMO_SNIPER', + name = 'weapon_marksmanrifle', + }, + tirerepairkit = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A kit to repair your tires', + image = 'tirerepairkit.png', + shouldClose = true, + label = 'Tire Repair Kit', + name = 'tirerepairkit', + }, + njords_tide = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Frisch wie die Seebrise und kraftvoll wie die Gezeiten des Meeres.', + image = 'NjordsTide.png', + shouldClose = true, + label = 'Njord\'s Tide', + name = 'njords_tide', + }, + dirt = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'dirt.png', + shouldClose = false, + label = 'Erde', + name = 'dirt', + }, + samsplint = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'samsplint.png', + shouldClose = true, + label = 'Samsplint', + name = 'samsplint', + }, + frenchfries = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_692-removebg-preview.png', + shouldClose = true, + label = 'French Fries', + name = 'frenchfries', + }, + salbutamol = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'salbutamol.png', + shouldClose = true, + label = 'Salbutamol', + name = 'salbutamol', + }, + jerry_can = { + useable = true, + weight = 20000, + type = 'item', + unique = false, + description = 'A can full of Fuel', + image = 'jerry_can.png', + shouldClose = true, + label = 'Jerrycan 20L', + name = 'jerry_can', + }, + raw_sausages = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'raw_sausages.png', + shouldClose = true, + label = 'rohe Bratwurst', + name = 'raw_sausages', + }, + chair = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = '', + image = 'chair.png', + shouldClose = true, + label = 'Stuhl', + name = 'chair', + }, + harness = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = 'Racing Harness so no matter what you stay in the car', + image = 'harness.png', + shouldClose = true, + label = 'Race Harness', + name = 'harness', + }, + weapon_ceramicpistol = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Ceramicpistol', + image = 'weapon_ceramicpistol.png', + label = 'Ceramic Pistol', + ammotype = 'AMMO_PISTOL', + name = 'weapon_ceramicpistol', + }, + junk_energy = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Dose mit Engery', + image = 'junk_energy.png', + shouldClose = true, + label = 'Junk Energy', + name = 'junk_energy', + }, + drum_mechanism = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Der Dreh, der alles verändert – Spannung in jeder Umdrehung', + image = 'Trommel.png', + shouldClose = false, + label = 'Trommel Mechanismus', + name = 'drum_mechanism', + }, + weapon_knuckle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A metal guard worn over the knuckles in fighting, especially to increase the effect of the blows', + name = 'weapon_knuckle', + label = 'Knuckle', + image = 'weapon_knuckle.png', + }, + defibrillator = { + useable = true, + weight = 3000, + type = 'item', + unique = false, + description = '', + image = 'aed.png', + shouldClose = true, + label = 'Defibrillator', + name = 'defibrillator', + }, + sandwich = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'bist du dir sicher das du das essen willst?', + image = 'sandwich.png', + shouldClose = true, + label = '3 Tage altes Sandwich', + name = 'sandwich', + }, + propofol_100 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'Propofol-00409469924-removebg-preview.png', + shouldClose = true, + label = 'Propofol (100ml)', + name = 'propofol_100', + }, + ecola_flasche = { + useable = true, + weight = 80, + type = 'item', + unique = false, + description = 'Flasche Cola', + image = 'ecolabottle.png', + shouldClose = true, + label = 'E-Cola Flasche', + name = 'ecola_flasche', + }, + weapon_microsmg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A handheld light weight machine gun', + image = 'weapon_microsmg.png', + label = 'Micro SMG', + ammotype = 'AMMO_SMG', + name = 'weapon_microsmg', + }, + weapon_appistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Wie die normale Klog nur mit mehr Fuck Yeaaah!', + image = 'weapon_appistol.png', + label = ' Klog 19 A', + ammotype = 'AMMO_PISTOL', + name = 'weapon_appistol', + }, + yggdrasils_root = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = '', + image = 'YggdrasilsRoot.png', + shouldClose = true, + label = 'Yggdrasil\'s Root', + name = 'yggdrasils_root', + }, + sniper_extendedclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'sniper_extendedclip.png', + shouldClose = true, + label = 'erw. Sniper Magazin', + name = 'sniper_extendedclip', + }, + weapon_assaultrifle_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Assault Rifle MK2', + image = 'weapon_assaultrifle_mk2.png', + label = 'Assault Rifle Mk II', + ammotype = 'AMMO_RIFLE', + name = 'weapon_assaultrifle_mk2', + }, + weapon_bat = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Used for hitting a ball in sports (or other things)', + name = 'weapon_bat', + label = 'Bat', + image = 'weapon_bat.png', + }, + flohmittel = { + useable = true, + weight = 25, + type = 'item', + unique = false, + description = '', + image = 'Flohmittel.png', + shouldClose = true, + label = 'Flohmittel', + name = 'flohmittel', + }, + markedbills = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = 'Money?', + image = 'markedbills.png', + shouldClose = true, + label = 'Marked Money', + name = 'markedbills', + }, + metalscrap = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Der Stoff, aus dem DIY-Träume sind', + image = 'scrap-iron.png', + shouldClose = false, + label = 'Metallschrott', + name = 'metalscrap', + }, + cc_latte = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'cc_latte.png', + shouldClose = true, + label = 'Latte Macchiato', + name = 'cc_latte', + }, + pistol_ammo = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Peng in klein', + image = 'pistol_ammo.png', + shouldClose = true, + label = 'Pistolen Munition', + name = 'pistol_ammo', + }, + sand = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'sand.png', + shouldClose = false, + label = 'Eimer mit Sand', + name = 'sand', + }, + anchovy = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'anchovy.png', + shouldClose = false, + label = 'Anchovy', + name = 'anchovy', + }, + weapon_smg_mk2 = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'SMG MK2', + image = 'highteamsmgmk2-removebg-preview.png', + label = 'SMG Mk II', + ammotype = 'AMMO_SMG', + name = 'weapon_smg_mk2', + }, + coffee = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Pump 4 Caffeine', + image = 'coffee.png', + shouldClose = true, + label = 'Kaffee Togo', + name = 'coffee', + }, + scookie = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Ein Softcookie ist ein weicher, saftiger Keks mit einer zarten Textur, der oft noch leicht warm und innen herrlich chewy ist.', + image = 'softccookie.png', + shouldClose = true, + label = 'Soft Cookie', + name = 'scookie', + }, + weapon_militaryrifle = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Militaryrifle', + image = 'weapon_assaultrifle.png', + label = 'Weapon Militaryrifle', + ammotype = 'AMMO_RIFLE', + name = 'weapon_militaryrifle', + }, + weapon_advancedrifle = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An assault version of a rapid-fire, magazine-fed automatic rifle designed for infantry use', + image = 'weapon_advancedrifle.png', + label = 'Advanced Rifle', + ammotype = 'AMMO_RIFLE', + name = 'weapon_advancedrifle', + }, + weapon_golfclub = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A club used to hit the ball in golf', + name = 'weapon_golfclub', + label = 'Golfclub', + image = 'weapon_golfclub.png', + }, + diving_gear = { + useable = true, + weight = 30000, + type = 'item', + unique = true, + description = 'An oxygen tank and a rebreather', + image = 'diving_gear.png', + shouldClose = true, + label = 'Diving Gear', + name = 'diving_gear', + }, + spikestrips = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = '', + image = 'spikestripes.png', + shouldClose = true, + label = 'Nagelband', + name = 'spikestrips', + }, + smg_holoscope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'holoscope_attachment.png', + shouldClose = true, + label = 'SMG Holoscope', + name = 'smg_holoscope', + }, + diamond_ring = { + useable = false, + weight = 1500, + type = 'item', + unique = false, + description = 'A diamond ring seems like the jackpot to me!', + image = 'diamond_ring.png', + shouldClose = true, + label = 'Diamond Ring', + name = 'diamond_ring', + }, + privcard01 = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Registriert auf Mark Petrol', + image = '', + shouldClose = false, + label = 'Schlüsselkarte-0100a', + name = 'privcard01', + }, + cooked_bbq_thigh = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_bbq_thigh.png', + shouldClose = true, + label = 'gegrillte Hähnchenkeule', + name = 'cooked_bbq_thigh', + }, + deckelblendno5 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'deckelblendno5.png', + shouldClose = false, + label = 'Deckel Blend No.5', + name = 'deckelblendno5', + }, + weapon_rayminigun = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Rayminigun', + image = 'weapon_rayminigun.png', + label = 'Widowmaker', + ammotype = 'AMMO_MINIGUN', + name = 'weapon_rayminigun', + }, + simcard = { + useable = false, + weight = 1, + type = 'item', + unique = true, + description = '„Nicht einfach eine SIM. Ein Statement für Stil – in der Welt der Empfangslosen.“', + image = 'simcard.png', + shouldClose = false, + label = 'Sim-Karte', + name = 'simcard', + }, + blackmoney_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'blackmoney_route.png', + shouldClose = false, + label = 'Schwarzgeld Route', + name = 'blackmoney_route', + }, + kakao3 = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Eine Tasse heiße Schokolade mit Marshmallows ist wie ein Kuschelabend in flüssiger Form – süß, warm und himmlisch übertrieben.', + image = 'kakao3.png', + shouldClose = true, + label = 'Tasse Heiße Schokolade mit Marshmallows', + name = 'kakao3', + }, + weapon_briefcase = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A briefcase for storing important documents', + name = 'weapon_briefcase', + label = 'Briefcase', + image = 'weapon_briefcase.png', + }, + dendrogyra_coral = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Its also known as pillar coral', + image = 'dendrogyra_coral.png', + shouldClose = true, + label = 'Dendrogyra', + name = 'dendrogyra_coral', + }, + corn = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'corn.png', + shouldClose = false, + label = 'Getreide', + name = 'corn', + }, + eis_konfekt = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Eis Konfekt – der erfrischende Klassiker aus den 70er Jahren!', + image = 'ChatGPT_Image_27._Apr._2025__12_24_22-removebg-preview.png', + shouldClose = true, + label = 'Eis Konfekt', + name = 'eis_konfekt', + }, + badfruit = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'badfruit.png', + shouldClose = false, + label = 'Faules Obst', + name = 'badfruit', + }, + barrel_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A barrel for a weapon', + image = 'barrel_attachment.png', + shouldClose = true, + label = 'Barrel', + name = 'barrel_attachment', + }, + rifle_smallscope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'smallscope_attachment.png', + shouldClose = true, + label = 'MK2 Gewehr Visier klein', + name = 'rifle_smallscope', + }, + lawyerpass = { + useable = true, + weight = 0, + type = 'item', + unique = true, + description = 'Pass exclusive to lawyers to show they can represent a suspect', + image = 'lawyerpass.png', + shouldClose = false, + label = 'Lawyer Pass', + name = 'lawyerpass', + }, + pistol_extendedclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'erw. Pistolen Magazin', + image = 'clip_attachment.png', + shouldClose = true, + label = 'pistol_extendedclip', + name = 'pistol_extendedclip', + }, + weapontint_7 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Platinum Weapon Tint', + image = 'weapontint_plat.png', + shouldClose = true, + label = 'Platinum Tint', + name = 'weapontint_7', + }, + sprunk_flasche = { + useable = true, + weight = 80, + type = 'item', + unique = false, + description = 'Flasche Zitronen Limo', + image = 'sprunk_flasche.png', + shouldClose = true, + label = 'Sprunk Flasche', + name = 'sprunk_flasche', + }, + eimdalls_lear_ight = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Ein erfrischendes, klares Getränk, das wie Heimdall’s wachsames Auge rein und belebend wirkt.', + image = 'HeimdallsClearSight.png', + shouldClose = true, + label = 'Heimdall\'s Clear Sight', + name = 'heimdalls_clear_sight', + }, + weed_ogkush = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'A weed bag with 2g OG Kush', + image = 'weed_baggy.png', + shouldClose = false, + label = 'OGKush 2g', + name = 'weed_ogkush', + }, + weapontint_mk2_7 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Earth Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Earth Tint', + name = 'weapontint_mk2_7', + }, + gg_hunting_animaltrap = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_hunting_animaltrap.png', + shouldClose = true, + label = 'Tierfalle', + name = 'gg_hunting_animaltrap', + }, + nacl_500 = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = '', + image = 'nacl.png', + shouldClose = true, + label = 'NACL (500ml)', + name = 'nacl_500', + }, + ironbar = { + useable = false, + weight = 2000, + type = 'item', + unique = false, + description = '', + image = 'ironbar.png', + shouldClose = false, + label = 'Eisenbarren', + name = 'ironbar', + }, + radio = { + useable = false, + weight = 600, + type = 'item', + unique = true, + description = 'You can communicate with this through a signal', + image = 'radio.png', + shouldClose = true, + label = 'Funkgerät', + name = 'radio', + }, + tims_instant_nudeln = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'der Kulinarische Blitzbesuch in Fernost', + image = 'tims_instant_nudeln.png', + shouldClose = true, + label = 'Tim\'s Instant Nudeln', + name = 'tims_instant_nudeln', + }, + attachment_bench = { + useable = true, + weight = 15000, + type = 'item', + unique = true, + description = 'A workbench for crafting attachments.', + image = 'attworkbench.png', + shouldClose = false, + label = 'Attachment Workbench', + name = 'attachment_bench', + }, + thermalscope_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A thermal scope for a weapon', + image = 'thermalscope_attachment.png', + shouldClose = true, + label = 'Thermal Scope', + name = 'thermalscope_attachment', + }, + police_stormram = { + useable = true, + weight = 18000, + type = 'item', + unique = true, + description = 'A nice tool to break into doors', + image = 'police_stormram.png', + shouldClose = true, + label = 'Stormram', + name = 'police_stormram', + }, + ecola_dose = { + useable = true, + weight = 50, + type = 'item', + unique = false, + description = 'Dose Cola', + image = 'ecola_dose.png', + shouldClose = true, + label = 'E-Cola Dose', + name = 'ecola_dose', + }, + smg_ammo = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Kleines schnelles Peng', + image = 'smg_ammo.png', + shouldClose = true, + label = 'SMG Munition', + name = 'smg_ammo', + }, + anglegrinder = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '„Dein bester Freund, wenn’s darum geht, Dinge zu zerstören – äh, bearbeiten.“', + image = 'anglegrinder.png', + shouldClose = false, + label = 'Flex', + name = 'anglegrinder', + }, + medscope_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A medium scope for a weapon', + image = 'medscope_attachment.png', + shouldClose = true, + label = 'Medium Scope', + name = 'medscope_attachment', + }, + cash = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Nur Bares ist wares...', + image = 'cash.png', + shouldClose = false, + label = 'Bargeld', + name = 'cash', + }, + weapon_mg = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An automatic gun that fires bullets in rapid succession for as long as the trigger is pressed', + image = 'weapon_mg.png', + label = 'Machinegun', + ammotype = 'AMMO_MG', + name = 'weapon_mg', + }, + halbes_haendel = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'zum Finger lecken gut ^^', + image = 'halbes_haendel.png', + shouldClose = true, + label = 'Halbes Händel', + name = 'halbes_haendel', + }, + weapon_knife = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An instrument composed of a blade fixed into a handle, used for cutting or as a weapon', + name = 'weapon_knife', + label = 'Messer', + image = 'weapon_knife.png', + }, + muffin = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'der Muffin Mann...', + image = 'ChatGPT_Image_1._Mai_2025__03_50_52-removebg-preview.png', + shouldClose = true, + label = 'Muffin', + name = 'muffin', + }, + zeckenschutzmittel = { + useable = true, + weight = 25, + type = 'item', + unique = false, + description = '', + image = 'Zeckenschutzmittel.png', + shouldClose = true, + label = 'Zeckenschutzmittel', + name = 'zeckenschutzmittel', + }, + manual_gearbox = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'Handgerissen, so gehört sich das', + image = 'manual_gearbox.png', + shouldClose = true, + label = 'Schaltgetriebe', + name = 'manual_gearbox', + }, + weapon_snspistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = ' So unauffällig, dass selbst der Agent manchmal vergisst, dass er sie dabei hat.', + image = 'screenshot_401-removebg-preview.png', + label = 'Durov Pistole', + ammotype = 'AMMO_PISTOL', + name = 'weapon_snspistol', + }, + flat_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'flat_muzzle_brake.png', + shouldClose = true, + label = 'Flat Muzzle Brake', + name = 'flat_muzzle_brake', + }, + wc_cupcake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'wc_cupcake.png', + shouldClose = true, + label = 'White Chocolate Raspberry Cupcake', + name = 'wc_cupcake', + }, + empty_nitrous_bottle = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'empty_nitrous_bottle.png', + shouldClose = true, + label = 'leere Nitro Flasche', + name = 'empty_nitrous_bottle', + }, + weed_skunk_seed = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A weed seed of Skunk', + image = 'weed_seed.png', + shouldClose = true, + label = 'Skunk Seed', + name = 'weed_skunk_seed', + }, + advancedrepairkit = { + useable = true, + weight = 4000, + type = 'item', + unique = false, + description = 'A nice toolbox with stuff to repair your vehicle', + image = 'advancedkit.png', + shouldClose = true, + label = 'Advanced Repairkit', + name = 'advancedrepairkit', + }, + waffle_icream = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Cremiges Vanilleeis, umhüllt von zwei zarten Waffelschichten – der Klassiker im Retro-Look für echte Eisliebhaber.', + image = 'waffle_icream.png', + shouldClose = true, + label = 'Sandwich Eis', + name = 'waffle_icream', + }, + donut = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Dooooonuuuuts', + image = 'donut.png', + shouldClose = true, + label = 'Donut', + name = 'donut', + }, + grilled_fish = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'grilled_fish.png', + shouldClose = true, + label = 'Gegrilltes Fischfilet', + name = 'grilled_fish', + }, + fish_and_chips = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'very british ^^', + image = 'fish_and_chips.png', + shouldClose = true, + label = 'Fish and Chips', + name = 'fish_and_chips', + }, + weapon_unarmed = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Fisticuffs', + name = 'weapon_unarmed', + label = 'Fists', + image = 'placeholder.png', + }, + marble_pop_limo = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Kult-Getränk aus Japan: Erfrischende Limonade mit fruchtigem Geschmack und der typischen Glasmurmel', + image = 'marblepop.png', + shouldClose = true, + label = 'Marble Pop Limo', + name = 'marble_pop_limo', + }, + shortened_gunbarrel = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Weniger Lauf, mehr Stil', + image = 'shotgun_barrel_compressed_better.png', + shouldClose = false, + label = 'verkürzter Waffenlauf', + name = 'shortened_gunbarrel', + }, + leopardcamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A leopard camo for a weapon', + image = 'leopardcamo_attachment.png', + shouldClose = true, + label = 'Leopard Camo', + name = 'leopardcamo_attachment', + }, + p_schnecke = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'p_schnecke.png', + shouldClose = true, + label = '', + name = 'p_schnecke', + }, + weapontint_mk2_4 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Classic Beige Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Classic Beige Tint', + name = 'weapontint_mk2_4', + }, + gg_hunting_knife_03 = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_hunting_knife_03.png', + shouldClose = true, + label = 'Premium Jagdmesser', + name = 'gg_hunting_knife_03', + }, + packtomatos = { + useable = false, + weight = 600, + type = 'item', + unique = true, + description = '', + image = 'packtomatos.png', + shouldClose = false, + label = 'Packung Tomaten', + name = 'packtomatos', + }, + shotgun_squaredmuzzle = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'comp_attachment.png', + shouldClose = true, + label = 'MK2 Shotgun Squaredmuzzle', + name = 'shotgun_squaredmuzzle', + }, + stevens_apfelmustorte = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'wie bei Oma', + image = 'stevens_apfelmustorte.png', + shouldClose = true, + label = 'Stevens Apfelmustorte', + name = 'stevens_apfelmustorte', + }, + boxgrapejuice = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'boxgrapejuice.png', + shouldClose = false, + label = 'Kiste Traubensaft', + name = 'boxgrapejuice', + }, + weapontint_mk2_17 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Bold Red Features Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Bold Red Features Tint', + name = 'weapontint_mk2_17', + }, + cc_cupcake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'cc_cupcake.png', + shouldClose = true, + label = 'Cheesecake Cupcake', + name = 'cc_cupcake', + }, + dc_cupcake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'dc_cupcake.png', + shouldClose = true, + label = 'Double-Chocolate Cupcake', + name = 'dc_cupcake', + }, + fishingrod = { + useable = true, + weight = 400, + type = 'item', + unique = true, + description = '', + image = 'fishingrod.png', + shouldClose = true, + label = 'Angelrute', + name = 'fishingrod', + }, + mmkc = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'mmkc.png', + shouldClose = true, + label = 'Mercimek Çorbasi', + name = 'mmkc', + }, + duct_tape = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'duct_tape.png', + shouldClose = true, + label = 'Klebeband', + name = 'duct_tape', + }, + weapon_battleaxe = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A large broad-bladed axe used in ancient warfare', + name = 'weapon_battleaxe', + label = 'Battle Axe', + image = 'weapon_battleaxe.png', + }, + meth_route = { + useable = false, + weight = 10, + type = 'item', + unique = true, + description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', + image = 'meth_route.png', + shouldClose = false, + label = 'Meth Route', + name = 'meth_route', + }, + e_kaffee = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'e_kaffee.png', + shouldClose = true, + label = 'Eiskaffee', + name = 'e_kaffee', + }, + clutch_replacement = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'clutch_replacement.png', + shouldClose = true, + label = 'Premium Kupplungssatz', + name = 'clutch_replacement', + }, + shotgun_holoscope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'holoscope_attachment.png', + shouldClose = true, + label = 'MK2 Shotgun Holovisier', + name = 'shotgun_holoscope', + }, + cheeseanachos = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Knusprige Nachos, überzogen mit cremiger, würziger Käsesauce', + image = 'ChatGPT_Image_26._Apr._2025__18_25_48-removebg-preview.png', + shouldClose = true, + label = 'Nachos mit Käsesauce', + name = 'cheeseanachos', + }, + cokebaggy = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'To get happy real quick', + image = 'cocaine_baggy.png', + shouldClose = true, + label = 'Bag of Coke', + name = 'cokebaggy', + }, + weed_purplehaze_seed = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A weed seed of Purple Haze', + image = 'weed_seed.png', + shouldClose = true, + label = 'Purple Haze Seed', + name = 'weed_purplehaze_seed', + }, + weapontint_mk2_23 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Metallic Gold Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Metallic Gold Tint', + name = 'weapontint_mk2_23', + }, + weapon_grenade = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A handheld throwable bomb', + name = 'weapon_grenade', + label = 'Grenade', + image = 'weapon_grenade.png', + }, + drum_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A drum for a weapon', + image = 'drum_attachment.png', + shouldClose = true, + label = 'Drum', + name = 'drum_attachment', + }, + antipatharia_coral = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Its also known as black corals or thorn corals', + image = 'antipatharia_coral.png', + shouldClose = true, + label = 'Antipatharia', + name = 'antipatharia_coral', + }, + salami_b = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'salami_b.png', + shouldClose = true, + label = '', + name = 'salami_b', + }, + ['sifs_golden-ale'] = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Golden und nahrhaft, wie das Feld unter der Obhut der Göttin Sif.', + image = 'SifGoldenAle.png', + shouldClose = true, + label = 'Sif\'s Golden Ale', + name = 'sifs_golden-ale', + }, + bruschetta = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'bruschetta.png', + shouldClose = true, + label = 'Bruschetta', + name = 'bruschetta', + }, + oxy = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'The Label Has Been Ripped Off', + image = 'oxy.png', + shouldClose = true, + label = 'Prescription Oxy', + name = 'oxy', + }, + flashlight_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A flashlight for a weapon', + image = 'flashlight_attachment.png', + shouldClose = true, + label = 'Flashlight', + name = 'flashlight_attachment', + }, + lean = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Der Drink, der dich so langsam macht wie eine Schnecke auf Valium', + image = 'lean.png', + shouldClose = true, + label = 'Lean', + name = 'lean', + }, + tomato = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'tomato.png', + shouldClose = false, + label = 'Tomate', + name = 'tomato', + }, + shotgun_flashlight = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'flashlight_attachment.png', + shouldClose = true, + label = 'Shotgun Licht', + name = 'shotgun_flashlight', + }, + doj_card = { + useable = true, + weight = 10, + type = 'item', + unique = true, + description = '', + image = 'doj_card.png', + shouldClose = true, + label = 'DOJ Card', + name = 'doj_card', + }, + mettbroetchen = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'mhmm deutsches Sushi', + image = 'mettbroetchen.png', + shouldClose = true, + label = 'Mettbrötchen', + name = 'mettbroetchen', + }, + weed_amnesia = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'A weed bag with 2g Amnesia', + image = 'weed_baggy.png', + shouldClose = false, + label = 'Amnesia 2g', + name = 'weed_amnesia', + }, + weapon_briefcase_02 = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Wonderfull for nice vacation to Liberty City', + name = 'weapon_briefcase_02', + label = 'Suitcase', + image = 'weapon_briefcase2.png', + }, + bread_bait = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'bread_bait.png', + shouldClose = false, + label = 'Stück Brot', + name = 'bread_bait', + }, + deployable_light = { + useable = true, + weight = 250, + type = 'item', + unique = true, + description = '', + image = 'deployable_light.png', + shouldClose = false, + label = 'Aufsetzt Rundumleuchte', + name = 'deployable_light', + }, + salsa_nachos = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Knusprige Nachos, serviert mit frischer, würziger Salsa ', + image = 'ChatGPT_Image_26._Apr._2025__19_00_33-removebg-preview.png', + shouldClose = true, + label = 'Nachos mit Salsa', + name = 'salsa_nachos', + }, + patriotcamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A patriot camo for a weapon', + image = 'patriotcamo_attachment.png', + shouldClose = true, + label = 'Patriot Camo', + name = 'patriotcamo_attachment', + }, + weapon_grenadelauncher_smoke = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A bomb that produces a lot of smoke when it explodes', + image = 'weapon_grenadelauncher_smoke.PNG', + label = 'Smoke Grenade Launcher', + ammotype = 'AMMO_GRENADELAUNCHER', + name = 'weapon_grenadelauncher_smoke', + }, + handcuffs = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Comes in handy when people misbehave. Maybe it can be used for something else?', + image = 'handcuffs.png', + shouldClose = true, + label = 'Handschellen', + name = 'handcuffs', + }, + raw_short_ribs = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'raw_short_ribs.png', + shouldClose = true, + label = 'rohe Short Ribs', + name = 'raw_short_ribs', + }, + rifle_defaultclip = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'rifle_defaultclip.png', + shouldClose = true, + label = 'Gewehr Magazin', + name = 'rifle_defaultclip', + }, + ev_battery = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'ev_battery.png', + shouldClose = true, + label = 'EV Battery', + name = 'ev_battery', + }, + dackels = { + useable = false, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'dacklschreck.png', + shouldClose = false, + label = 'Dackelschreck', + name = 'dackels', + }, + labkey = { + useable = true, + weight = 500, + type = 'item', + unique = true, + description = 'Key for a lock...?', + image = 'labkey.png', + shouldClose = true, + label = 'Key', + name = 'labkey', + }, + aspirin = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'aspirin.png', + shouldClose = true, + label = 'Aspirin', + name = 'aspirin', + }, + cooked_short_ribs = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_short_ribs.png', + shouldClose = true, + label = 'gegrillte Short Ribs', + name = 'cooked_short_ribs', + }, + weapon_compactlauncher = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A compact grenade launcher', + name = 'weapon_compactlauncher', + label = 'Compact Launcher', + image = 'weapon_compactlauncher.png', + }, + munky_juice_ice_tea = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'Pfirsich oder Zitrone das hier die Frage...', + image = 'munky_juice_ice_tea.png', + shouldClose = true, + label = 'Munky Juice Ice Tea', + name = 'munky_juice_ice_tea', + }, + weapontint_mk2_10 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Blue Contrast Weapon Tint for MK2 Weapons', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Blue Contrast Tint', + name = 'weapontint_mk2_10', + }, + cup_beer = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'cup_beer.png', + shouldClose = true, + label = 'Becher Bier', + name = 'cup_beer', + }, + field_dressing = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'screenshot_477-removebg-preview.png', + shouldClose = true, + label = 'Verbandtuch', + name = 'field_dressing', + }, + rb_cupcake = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'rb_cupcake.png', + shouldClose = true, + label = 'Rainbow Cupcake', + name = 'rb_cupcake', + }, + heimdalls_watch = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Scharf und klar wie Heimdalls Auge, aber mit einem farbenfrohen Twist.', + image = 'HeimdallsWatch.png', + shouldClose = true, + label = 'Heimdall\'s Watch', + name = 'heimdalls_watch', + }, + surgical_kit = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = '', + image = 'surgicalkit.png', + shouldClose = true, + label = 'Näh-Set', + name = 'surgical_kit', + }, + weapon_dagger = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'A short knife with a pointed and edged blade, used as a weapon', + name = 'weapon_dagger', + label = 'Dagger', + image = 'weapon_dagger.png', + }, + lighting_controller = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'Alle Farben des Regenbogens per Knopfdruck', + image = 'lighting_controller.png', + shouldClose = false, + label = 'Neon Controller', + name = 'lighting_controller', + }, + thors_thunder_storm = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'ThorsThunderStorm.png', + shouldClose = true, + label = 'Thors Thunder Storm', + name = 'thors_thunder_storm', + }, + fishbait = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'fishbait.png', + shouldClose = false, + label = 'Köder', + name = 'fishbait', + }, + rostedcoffee = { + useable = false, + weight = 2000, + type = 'item', + unique = true, + description = '', + image = 'rostedcoffee.png', + shouldClose = false, + label = 'Sack geröstete Kaffeebohnen', + name = 'rostedcoffee', + }, + ribeye_steak = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'ribeye_steak.png', + shouldClose = true, + label = 'Ribeye Steak', + name = 'ribeye_steak', + }, + v12_engine = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'v12_engine.png', + shouldClose = true, + label = 'V12 Motor', + name = 'v12_engine', + }, + sniper_holoscope = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '', + image = 'holoscope_attachment.png', + shouldClose = true, + label = 'MK2 Sniper Holoscope', + name = 'sniper_holoscope', + }, + suppressor_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A suppressor for a weapon', + image = 'suppressor_attachment.png', + shouldClose = true, + label = 'Suppressor', + name = 'suppressor_attachment', + }, + weapon_throwingshoered = { + useable = true, + weight = 100, + type = 'weapon', + unique = true, + description = '', + image = 'weapon_throwingshoered.png', + shouldClose = true, + label = 'Schuh rot', + name = 'weapon_throwingshoered', + }, + air_filter = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'sollte das Baby wieder nach Luft schreien, einmal wechseln', + image = 'air_filter.png', + shouldClose = true, + label = 'Premium Luftfilter', + name = 'air_filter', + }, + bellend_muzzle_brake = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A muzzle brake for a weapon', + image = 'bellend_muzzle_brake.png', + shouldClose = true, + label = 'Bellend Muzzle Brake', + name = 'bellend_muzzle_brake', + }, + erz = { + useable = false, + weight = 2000, + type = 'item', + unique = false, + description = '', + image = 'erz.png', + shouldClose = false, + label = 'Metallerz', + name = 'erz', + }, + gardensicorr = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '', + image = 'gardensicorr.png', + shouldClose = false, + label = 'Gartenschere', + name = 'gardensicorr', + }, + clip_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A clip for a weapon', + image = 'clip_attachment.png', + shouldClose = true, + label = 'Clip', + name = 'clip_attachment', + }, + weapon_vintagepistol = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'An antique firearm designed to be held in one hand', + image = 'weapon_vintagepistol.png', + label = 'Vintage Pistol', + ammotype = 'AMMO_PISTOL', + name = 'weapon_vintagepistol', + }, + chemical_set = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = 'Dein persönliches Labor für Experimente, die besser nicht in der Küche stattfinden.', + image = 'lab.png', + shouldClose = false, + label = 'Chemikalien-Set', + name = 'chemical_set', + }, + gg_rabbit_pelt_03 = { + useable = false, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'gg_rabbit_pelt_03.png', + shouldClose = true, + label = 'Makelloses Kaninchenfell', + name = 'gg_rabbit_pelt_03', + }, + brushcamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A brushstroke camo for a weapon', + image = 'brushcamo_attachment.png', + shouldClose = true, + label = 'Brushstroke Camo', + name = 'brushcamo_attachment', + }, + grapejuice = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Grape juice is said to be healthy', + image = 'traubensaft.png', + shouldClose = false, + label = 'Flasche Traubensaft', + name = 'grapejuice', + }, + vapejuice = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'vapejuice.png', + shouldClose = false, + label = 'E-Liquid', + name = 'vapejuice', + }, + lokis_trickster_punch = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'LokisTricksterPunch.png', + shouldClose = true, + label = 'Lokis Trickster Punch', + name = 'lokis_trickster_punch', + }, + stonedrill = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'stonedrill.png', + shouldClose = false, + label = 'Steinbohrer', + name = 'stonedrill', + }, + weapon_license = { + useable = true, + weight = 10, + type = 'item', + unique = true, + description = '', + image = 'weapon_license.png', + shouldClose = true, + label = 'Waffenschein', + name = 'weapon_license', + }, + waffle_ice = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'waffle_ice.png', + shouldClose = true, + label = 'Waffel mit Erdbeereis', + name = 'waffle_ice', + }, + marshmallows = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Marshmallows sind wie kleine Wolken, die versehentlich in Zucker gefallen und dann beschlossen haben, für immer süß zu bleiben.', + image = 'marshmallows.png', + shouldClose = true, + label = 'Packung Marshmallows', + name = 'marshmallows', + }, + trojan_usb = { + useable = false, + weight = 0, + type = 'item', + unique = false, + description = 'Handy software to shut down some systems', + image = 'usb_device.png', + shouldClose = true, + label = 'Trojan USB', + name = 'trojan_usb', + }, + skullcamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A skull camo for a weapon', + image = 'skullcamo_attachment.png', + shouldClose = true, + label = 'Skull Camo', + name = 'skullcamo_attachment', + }, + cappuccino = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '„Cappucioni – halb Schaum, halb Koffein, 100 % Attitüde. Gebrüht wie ein Drive-By: schnell, heiß und mit ordentlich Einschlag.“', + image = 'cappuccino.png', + shouldClose = true, + label = 'Tasse Cappuccino', + name = 'cappuccino', + }, + flood_light = { + useable = true, + weight = 600, + type = 'item', + unique = false, + description = '', + image = 'flood_light.png', + shouldClose = true, + label = 'Outdoor Lampe', + name = 'flood_light', + }, + baklava = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'baklava.png', + shouldClose = true, + label = 'Baklava', + name = 'baklava', + }, + firework4 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Fireworks', + image = 'firework4.png', + shouldClose = true, + label = 'Sky Vortex', + name = 'firework4', + }, + tuna = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'tuna.png', + shouldClose = false, + label = 'Tunfisch', + name = 'tuna', + }, + lighter = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Flamme an oder so ....', + image = 'lighter.png', + shouldClose = true, + label = 'Feuerzeug', + name = 'lighter', + }, + cooked_pork_joint = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_pork_joint.png', + shouldClose = true, + label = 'gegrillter Schweinebraten', + name = 'cooked_pork_joint', + }, + lolli = { + useable = true, + weight = 4, + type = 'item', + unique = false, + description = 'Du Lutscher ^^', + image = 'lolli.png', + shouldClose = true, + label = 'Lolli', + name = 'lolli', + }, + emptybottle = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'emptybottle.png', + shouldClose = false, + label = 'leere Flasche', + name = 'emptybottle', + }, + blue_phone = { + useable = false, + weight = 0.09999999999999432, + type = 'item', + unique = true, + description = '„Ein Akku, der genau so lange hält wie deine Aufmerksamkeitsspanne.“', + image = 'blue_phone.png', + shouldClose = false, + label = 'iFruit 12XR Blau', + name = 'blue_phone', + }, + electronickit = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = 'If you\'ve always wanted to build a robot you can maybe start here. Maybe you\'ll be the new Elon Musk?', + image = 'electronickit.png', + shouldClose = true, + label = 'Electronic Kit', + name = 'electronickit', + }, + ecola_light = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', + image = 'ecola_light.png', + shouldClose = true, + label = 'E-Cola Light Softdrink', + name = 'ecola_light', + }, + tuch = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = '', + shouldClose = true, + label = 'Stofftuch', + name = 'tuch', + }, + rohmilk = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'rohmilk.png', + shouldClose = false, + label = 'Eimer mit Rohmilch', + name = 'rohmilk', + }, + goldchain = { + useable = false, + weight = 1500, + type = 'item', + unique = false, + description = 'A golden chain seems like the jackpot to me!', + image = 'goldchain.png', + shouldClose = true, + label = 'Golden Chain', + name = 'goldchain', + }, + tourniquet = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = '81khEr+-vcL._AC_SX450_-removebg-preview.png', + shouldClose = true, + label = 'Tourniquet', + name = 'tourniquet', + }, + newsbmic = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = 'A Useable BoomMic', + image = 'newsbmic.png', + shouldClose = true, + label = 'Boom Microphone', + name = 'newsbmic', + }, + weapontint_3 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Pink Weapon Tint', + image = 'weapontint_pink.png', + shouldClose = true, + label = 'Pink Tint', + name = 'weapontint_3', + }, + ornageo = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', + image = 'ornageo.png', + shouldClose = true, + label = 'Orange O Tang Softdrink', + name = 'ornageo', + }, + spark_plug = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'spark_plug.png', + shouldClose = true, + label = 'Premium Zündkerzen', + name = 'spark_plug', + }, + advscope_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'An advanced scope for a weapon', + image = 'advscope_attachment.png', + shouldClose = true, + label = 'Advanced Scope', + name = 'advscope_attachment', + }, + trigger_unit = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = 'Der Schalter für Action – einmal drücken, und die Welt verändert sich', + image = 'snspistol_part_2.png', + shouldClose = false, + label = 'Abzugseinheit', + name = 'trigger_unit', + }, + skadis_hunt = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'So erfrischend und eisig wie Skadis frostige Heimat.', + image = 'SkadisHunt.png', + shouldClose = true, + label = 'Skadi\'s Hunt', + name = 'skadis_hunt', + }, + amarid = { + useable = false, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'screenshot_918-removebg-preview.png', + shouldClose = false, + label = 'Amarid Fasern', + name = 'amarid', + }, + empty_cup = { + useable = true, + weight = 6, + type = 'item', + unique = false, + description = '', + image = 'empty_cup.png', + shouldClose = true, + label = 'leerer Becher', + name = 'empty_cup', + }, + bandage = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A bandage works every time', + image = 'bandage.png', + shouldClose = true, + label = 'Bandage', + name = 'bandage', + }, + tosti = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Schmeckt fast wie selbst gemacht – wenn man sich selbst keine Mühe gibt.', + image = 'tosti.png', + shouldClose = true, + label = 'Grilled Cheese Sandwich', + name = 'tosti', + }, + weapon_raycarbine = { + useable = true, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Weapon Raycarbine', + image = 'weapon_raycarbine.png', + label = 'Unholy Hellbringer', + ammotype = 'AMMO_SMG', + name = 'weapon_raycarbine', + }, + artificial_lure = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'pb.png', + shouldClose = false, + label = 'Kunstköder', + name = 'artificial_lure', + }, + orange = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'orange.png', + shouldClose = false, + label = 'Orange', + name = 'orange', + }, + weapon_specialcarbine = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Wenn die Ar 15 nicht mehr reicht.', + image = 'weapon_specialcarbine.png', + label = 'KH 450', + ammotype = 'AMMO_RIFLE', + name = 'weapon_specialcarbine', + }, + gg_pug_bait_02 = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'gg_pug_bait_02.png', + shouldClose = true, + label = 'Illegaler Raubtierköder 2', + name = 'gg_pug_bait_02', + }, + trout = { + useable = true, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'trout.png', + shouldClose = false, + label = 'Forelle', + name = 'trout', + }, + beer = { + useable = true, + weight = 500, + type = 'item', + unique = false, + description = 'Nothing like a good cold beer!', + image = 'beer.png', + shouldClose = true, + label = 'Pißwasser Bier', + name = 'beer', + }, + potato = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = '', + image = 'potato.png', + shouldClose = false, + label = 'Kartoffel', + name = 'potato', + }, + extras_kit = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = '', + image = 'extras_kit.png', + shouldClose = true, + label = 'Fahrzeug Extras', + name = 'extras_kit', + }, + akrinor = { + useable = true, + weight = 20, + type = 'item', + unique = false, + description = '', + image = 'akrinor.png', + shouldClose = true, + label = 'Akrinor', + name = 'akrinor', + }, + cooked_kebab = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_kebab.png', + shouldClose = true, + label = 'gegrilltes Schaschlick', + name = 'cooked_kebab', + }, + woodcoal = { + useable = false, + weight = 1000, + type = 'item', + unique = false, + description = '', + image = 'woodcoal.png', + shouldClose = false, + label = 'Sack Holzkohle', + name = 'woodcoal', + }, + veh_toolbox = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Check vehicle status', + image = 'veh_toolbox.png', + shouldClose = true, + label = 'Toolbox', + name = 'veh_toolbox', + }, + coffeemug = { + useable = true, + weight = 100, + type = 'item', + unique = true, + description = '„Kaffee? Nein, das ist flüssiger Wahnsinn in \'ner Keramikgranate. Perfekt zum Durchziehen von Überfällen, Steuererklärungen oder Montagen.“', + image = 'coffeemug.png', + shouldClose = true, + label = 'Tasse Kaffee', + name = 'coffeemug', + }, + woodcamo_attachment = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'A woodland camo for a weapon', + image = 'woodcamo_attachment.png', + shouldClose = true, + label = 'Woodland Camo', + name = 'woodcamo_attachment', + }, + weapontint_0 = { + useable = true, + weight = 1000, + type = 'item', + unique = false, + description = 'Default/Black Weapon Tint', + image = 'weapontint_black.png', + shouldClose = true, + label = 'Default Tint', + name = 'weapontint_0', + }, + weed_amnesia_seed = { + useable = true, + weight = 0, + type = 'item', + unique = false, + description = 'A weed seed of Amnesia', + image = 'weed_seed.png', + shouldClose = true, + label = 'Amnesia Seed', + name = 'weed_amnesia_seed', + }, + lokum = { + useable = true, + weight = 10, + type = 'item', + unique = false, + description = '', + image = 'lokum.png', + shouldClose = true, + label = 'Lokum', + name = 'lokum', + }, + odins_mead = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = 'Ein weises Getränk, so alt wie die Geschichten von Asgard selbst.', + image = 'OdinsMead.png', + shouldClose = true, + label = ' Odin\'s Mead', + name = 'odins_mead', + }, + bikerack = { + useable = true, + weight = 1000, + type = 'item', + unique = true, + description = '', + image = 'bikerack.png', + shouldClose = true, + label = 'Fahrradträger', + name = 'bikerack', + }, + weapon_pistolxm3 = { + useable = false, + weight = 1000, + type = 'weapon', + unique = true, + description = 'Pistol XM3', + image = 'highteampistol.png', + label = 'Pistol XM3', + ammotype = 'AMMO_PISTOL', + name = 'weapon_pistolxm3', + }, + cooked_lamb_chop = { + useable = true, + weight = 200, + type = 'item', + unique = false, + description = '', + image = 'cooked_lamb_chops.png', + shouldClose = true, + label = 'gegrillte Lamkeule', + name = 'cooked_lamb_chop', + }, + lockpick = { + useable = true, + weight = 300, + type = 'item', + unique = false, + description = 'Very useful if you lose your keys a lot.. or if you want to use it for something else...', + image = 'lockpick.png', + shouldClose = true, + label = 'Dietrich', + name = 'lockpick', + }, + gunpowder = { + useable = false, + weight = 500, + type = 'item', + unique = false, + description = 'Schwarzes Pulver kann Schaden machen kann im Verdichten Zustand', + image = 'gunpowder.png', + shouldClose = false, + label = 'Schwarzpulver', + name = 'gunpowder', + }, + bauernsalat = { + useable = true, + weight = 200, + type = 'item', + unique = true, + description = 'Türkischer Bauernsalat', + image = 'corban.png', + shouldClose = true, + label = 'Çorban salatası ', + name = 'bauernsalat', + }, + iron = { + useable = false, + weight = 100, + type = 'item', + unique = false, + description = 'Handy piece of metal that you can probably use for something', + image = 'iron.png', + shouldClose = false, + label = 'Iron', + name = 'iron', + }, + gg_cougar_claw_02 = { + useable = false, + weight = 500, + type = 'item', + unique = true, + description = '', + image = 'gg_cougar_claw_02.png', + shouldClose = true, + label = 'Robuste Puma-Klaue', + name = 'gg_cougar_claw_02', + }, + fontain4 = { + shouldClose = true, + type = 'item', + description = '', + weight = 100, + label = 'Neon Fountain', + unique = false, + useable = true, + image = 'fontain4.png', + name = 'fontain4', + }, + car_wax = { + shouldClose = true, + type = 'item', + description = '', + weight = 500, + label = 'Autowachs', + unique = false, + useable = true, + image = 'car_wax.png', + name = 'car_wax', + }, + hose_reel = { + shouldClose = true, + type = 'item', + description = '', + weight = 2000, + label = 'Schlauchtrommel', + unique = false, + useable = true, + image = 'hose_reel.png', + name = 'hose_reel', + }, + hose_reel2 = { + shouldClose = true, + type = 'item', + description = '', + weight = 1000, + label = 'kleine Schlauchtrommel', + unique = false, + useable = true, + image = 'hose_reel2.png', + name = 'hose_reel2', + }, + bucket_sponge = { + shouldClose = true, + type = 'item', + description = '', + weight = 700, + label = 'Autowäsche Set Staionär', + unique = false, + useable = true, + image = 'bucket_sponge.png', + name = 'bucket_sponge', + }, + bucket_sponge2 = { + shouldClose = true, + type = 'item', + description = '', + weight = 700, + label = 'Autowäsche Set Mobil', + unique = false, + useable = true, + image = 'bucket_sponge2.png', + name = 'bucket_sponge2', + }, + stungun_ammo = { + shouldClose = true, + type = 'item', + description = '', + weight = 100, + label = 'Taser Cardridge', + unique = false, + useable = true, + image = 'stungun_ammo.png', + name = 'stungun_ammo', + }, + pdbag = { + shouldClose = true, + type = 'item', + description = '', + weight = 1000, + label = 'Ausrüstungs Tasche', + unique = true, + useable = true, + image = 'pdbag.png', + name = 'pdbag', + }, + pack_ecola = { + shouldClose = true, + type = 'item', + description = '', + weight = 1000, + label = 'Packung E-Cola', + unique = true, + useable = true, + image = 'pack_ecola.png', + name = 'pack_ecola', + }, + food_bag = { + shouldClose = true, + type = 'item', + description = 'Transportiert dein Essen und deinen Alc, egal in welcher Form ^^', + weight = 1000, + label = 'Papiertüte', + unique = true, + useable = true, + image = 'food_bag.png', + name = 'food_bag', + }, } +TriggerEvent("__cfx_export_tgiann-inventory_Items", function(ref) + if not ref then return end + QBShared.Items = ref() +end) + +AddEventHandler("tgiann-inventory:itemList", function(items) + QBShared.Items = items +end) \ No newline at end of file