3404 lines
649 KiB
Lua
3404 lines
649 KiB
Lua
|
QBShared = QBShared or {}
|
||
|
QBShared.Items = {
|
||
|
|
||
|
-- ['cash'] = {['name'] = 'cash', ['label'] = 'Cash', ['weight'] = 0, ['type'] = 'item', ['image'] = 'cash.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'cash'},
|
||
|
-- WEAPONS
|
||
|
|
||
|
-- Melee
|
||
|
['weapon_unarmed'] = {['name'] = 'weapon_unarmed', ['label'] = 'Fists', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'placeholder.png', ['unique'] = true, ['useable'] = false, ['description'] = 'Fisticuffs'},
|
||
|
['weapon_dagger'] = {['name'] = 'weapon_dagger', ['label'] = 'Dagger', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_dagger.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A short knife with a pointed and edged blade, used as a weapon'},
|
||
|
['weapon_bat'] = {['name'] = 'weapon_bat', ['label'] = 'Bat', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_bat.png', ['unique'] = true, ['useable'] = false, ['description'] = 'Used for hitting a ball in sports (or other things)'},
|
||
|
['weapon_bottle'] = {['name'] = 'weapon_bottle', ['label'] = 'Broken Bottle', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_bottle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A broken bottle'},
|
||
|
['weapon_crowbar'] = {['name'] = 'weapon_crowbar', ['label'] = 'Crowbar', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_crowbar.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An iron bar with a flattened end, used as a lever'},
|
||
|
['weapon_flashlight'] = {['name'] = 'weapon_flashlight', ['label'] = 'Flashlight', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_flashlight.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A battery-operated portable light'},
|
||
|
['weapon_golfclub'] = {['name'] = 'weapon_golfclub', ['label'] = 'Golfclub', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_golfclub.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A club used to hit the ball in golf'},
|
||
|
['weapon_hammer'] = {['name'] = 'weapon_hammer', ['label'] = 'Hammer', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_hammer.png', ['unique'] = true, ['useable'] = false, ['description'] = 'Used for jobs such as breaking things (legs) and driving in nails'},
|
||
|
['weapon_hatchet'] = {['name'] = 'weapon_hatchet', ['label'] = 'Hatchet', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_hatchet.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A small axe with a short handle for use in one hand'},
|
||
|
['weapon_knuckle'] = {['name'] = 'weapon_knuckle', ['label'] = 'Knuckle', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_knuckle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A metal guard worn over the knuckles in fighting, especially to increase the effect of the blows'},
|
||
|
['weapon_knife'] = {['name'] = 'weapon_knife', ['label'] = 'Knife', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_knife.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An instrument composed of a blade fixed into a handle, used for cutting or as a weapon'},
|
||
|
['weapon_machete'] = {['name'] = 'weapon_machete', ['label'] = 'Machete', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_machete.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A broad, heavy knife used as a weapon'},
|
||
|
['weapon_switchblade'] = {['name'] = 'weapon_switchblade', ['label'] = 'Switchblade', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_switchblade.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A knife with a blade that springs out from the handle when a button is pressed'},
|
||
|
['weapon_nightstick'] = {['name'] = 'weapon_nightstick', ['label'] = 'Nightstick', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_nightstick.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A police officer\'s club or billy'},
|
||
|
['weapon_wrench'] = {['name'] = 'weapon_wrench', ['label'] = 'Wrench', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_wrench.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A tool used for gripping and turning nuts, bolts, pipes, etc'},
|
||
|
['weapon_battleaxe'] = {['name'] = 'weapon_battleaxe', ['label'] = 'Battle Axe', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_battleaxe.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A large broad-bladed axe used in ancient warfare'},
|
||
|
['weapon_poolcue'] = {['name'] = 'weapon_poolcue', ['label'] = 'Poolcue', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_poolcue.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A stick used to strike a ball, usually the cue ball (or other things)'},
|
||
|
['weapon_briefcase'] = {['name'] = 'weapon_briefcase', ['label'] = 'Briefcase', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_briefcase.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A briefcase for storing important documents'},
|
||
|
['weapon_briefcase_02'] = {['name'] = 'weapon_briefcase_02', ['label'] = 'Suitcase', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_briefcase2.png', ['unique'] = true, ['useable'] = false, ['description'] = 'Wonderfull for nice vacation to Liberty City'},
|
||
|
['weapon_garbagebag'] = {['name'] = 'weapon_garbagebag', ['label'] = 'Garbage Bag', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_garbagebag.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A garbage bag'},
|
||
|
['weapon_handcuffs'] = {['name'] = 'weapon_handcuffs', ['label'] = 'Handcuffs', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_handcuffs.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A pair of lockable linked metal rings for securing a prisoner\'s wrists'},
|
||
|
['weapon_bread'] = {['name'] = 'weapon_bread', ['label'] = 'Baquette', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'baquette.png', ['unique'] = true, ['useable'] = false, ['description'] = 'Bread...?'},
|
||
|
['weapon_shoe'] = {['name'] = 'weapon_shoe', ['label'] = 'Shoe', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_shoe.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A shoe'},
|
||
|
['weapon_stone_hatchet'] = {['name'] = 'weapon_stone_hatchet', ['label'] = 'Stone Hatchet', ['weight'] = 100, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_stone_hatchet.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Stone ax'},
|
||
|
|
||
|
-- Melee
|
||
|
['weapon_candycane'] = {['name'] = 'weapon_candycane', ['label'] = 'Candy Cane', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_candycane.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Candy Cane'},
|
||
|
-- Pistols
|
||
|
['weapon_pistolxm3'] = {['name'] = 'weapon_pistolxm3', ['label'] = 'Pistol XM3', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_pistolxm3.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Pistol XM3'},
|
||
|
--Heavy Weapons
|
||
|
['weapon_railgunxm3'] = {['name'] = 'weapon_railgunxm3', ['label'] = 'Railgun XM3', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_railgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A weapon that uses electromagnetic force to launch high velocity projectiles'},
|
||
|
|
||
|
-- Handguns
|
||
|
['weapon_pistol'] = {['name'] = 'weapon_pistol', ['label'] = 'Walther P99', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_pistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A small firearm designed to be held in one hand'},
|
||
|
['weapon_pistol_mk2'] = {['name'] = 'weapon_pistol_mk2', ['label'] = 'Pistol Mk II', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_pistol_mk2.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An upgraded small firearm designed to be held in one hand'},
|
||
|
['weapon_combatpistol'] = {['name'] = 'weapon_combatpistol', ['label'] = 'Combat Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_combatpistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A combat version small firearm designed to be held in one hand'},
|
||
|
['weapon_appistol'] = {['name'] = 'weapon_appistol', ['label'] = 'AP Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_appistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A small firearm designed to be held in one hand that is automatic'},
|
||
|
['weapon_stungun'] = {['name'] = 'weapon_stungun', ['label'] = 'Taser', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_stungun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A weapon firing barbs attached by wires to batteries, causing temporary paralysis'},
|
||
|
['weapon_pistol50'] = {['name'] = 'weapon_pistol50', ['label'] = 'Pistol .50', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_pistol50.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A .50 caliber firearm designed to be held with both hands'},
|
||
|
['weapon_snspistol'] = {['name'] = 'weapon_snspistol', ['label'] = 'SNS Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_snspistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A very small firearm designed to be easily concealed'},
|
||
|
['weapon_heavypistol'] = {['name'] = 'weapon_heavypistol', ['label'] = 'Heavy Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_heavypistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A hefty firearm designed to be held in one hand (or attempted)'},
|
||
|
['weapon_vintagepistol'] = {['name'] = 'weapon_vintagepistol', ['label'] = 'Vintage Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_vintagepistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An antique firearm designed to be held in one hand'},
|
||
|
['weapon_flaregun'] = {['name'] = 'weapon_flaregun', ['label'] = 'Flare Gun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_FLARE', ['image'] = 'weapon_flaregun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A handgun for firing signal rockets'},
|
||
|
['weapon_marksmanpistol'] = {['name'] = 'weapon_marksmanpistol', ['label'] = 'Marksman Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_marksmanpistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A very accurate small firearm designed to be held in one hand'},
|
||
|
['weapon_revolver'] = {['name'] = 'weapon_revolver', ['label'] = 'Revolver', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_revolver.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A pistol with revolving chambers enabling several shots to be fired without reloading'},
|
||
|
['weapon_revolver_mk2'] = {['name'] = 'weapon_revolver_mk2', ['label'] = 'Violence', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_revolver_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'da Violence'},
|
||
|
['weapon_doubleaction'] = {['name'] = 'weapon_doubleaction', ['label'] = 'Double Action Revolver', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_doubleaction.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Double Action Revolver'},
|
||
|
['weapon_snspistol_mk2'] = {['name'] = 'weapon_snspistol_mk2', ['label'] = 'SNS Pistol Mk II', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_snspistol_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'SNS Pistol MK2'},
|
||
|
['weapon_raypistol'] = {['name'] = 'weapon_raypistol', ['label'] = 'Up-n-Atomizer', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_raypistol.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Raypistol'},
|
||
|
['weapon_ceramicpistol'] = {['name'] = 'weapon_ceramicpistol', ['label'] = 'Ceramic Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_ceramicpistol.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Ceramicpistol'},
|
||
|
['weapon_navyrevolver'] = {['name'] = 'weapon_navyrevolver', ['label'] = 'Navy Revolver', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_navyrevolver.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Navyrevolver'},
|
||
|
['weapon_gadgetpistol'] = {['name'] = 'weapon_gadgetpistol', ['label'] = 'Perico Pistol', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_gadgetpistol.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Gadgetpistol'},
|
||
|
|
||
|
-- Submachine Guns
|
||
|
['weapon_microsmg'] = {['name'] = 'weapon_microsmg', ['label'] = 'Micro SMG', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SMG', ['image'] = 'weapon_microsmg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A handheld lightweight machine gun'},
|
||
|
['weapon_smg'] = {['name'] = 'weapon_smg', ['label'] = 'SMG', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SMG', ['image'] = 'weapon_smg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A handheld lightweight machine gun'},
|
||
|
['weapon_smg_mk2'] = {['name'] = 'weapon_smg_mk2', ['label'] = 'SMG Mk II', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SMG', ['image'] = 'weapon_smg_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'SMG MK2'},
|
||
|
['weapon_assaultsmg'] = {['name'] = 'weapon_assaultsmg', ['label'] = 'Assault SMG', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SMG', ['image'] = 'weapon_assaultsmg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An assault version of a handheld lightweight machine gun'},
|
||
|
['weapon_combatpdw'] = {['name'] = 'weapon_combatpdw', ['label'] = 'Combat PDW', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SMG', ['image'] = 'weapon_combatpdw.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A combat version of a handheld lightweight machine gun'},
|
||
|
['weapon_machinepistol'] = {['name'] = 'weapon_machinepistol', ['label'] = 'Tec-9', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PISTOL', ['image'] = 'weapon_machinepistol.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A self-loading pistol capable of burst or fully automatic fire'},
|
||
|
['weapon_minismg'] = {['name'] = 'weapon_minismg', ['label'] = 'Mini SMG', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SMG', ['image'] = 'weapon_minismg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A mini handheld lightweight machine gun'},
|
||
|
['weapon_raycarbine'] = {['name'] = 'weapon_raycarbine', ['label'] = 'Unholy Hellbringer', ['weight'] = 800, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SMG', ['image'] = 'weapon_raycarbine.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Raycarbine'},
|
||
|
|
||
|
-- Shotguns
|
||
|
['weapon_pumpshotgun'] = {['name'] = 'weapon_pumpshotgun', ['label'] = 'Pump Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_pumpshotgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A pump-action smoothbore gun for firing small shot at short range'},
|
||
|
['weapon_sawnoffshotgun'] = {['name'] = 'weapon_sawnoffshotgun', ['label'] = 'Sawn-off Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_sawnoffshotgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A sawn-off smoothbore gun for firing small shot at short range'},
|
||
|
['weapon_assaultshotgun'] = {['name'] = 'weapon_assaultshotgun', ['label'] = 'Assault Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_assaultshotgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An assault version of asmoothbore gun for firing small shot at short range'},
|
||
|
['weapon_bullpupshotgun'] = {['name'] = 'weapon_bullpupshotgun', ['label'] = 'Bullpup Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_bullpupshotgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A compact smoothbore gun for firing small shot at short range'},
|
||
|
['weapon_musket'] = {['name'] = 'weapon_musket', ['label'] = 'Musket', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_musket.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An infantryman\'s light gun with a long barrel, typically smooth-bored, muzzleloading, and fired from the shoulder'},
|
||
|
['weapon_heavyshotgun'] = {['name'] = 'weapon_heavyshotgun', ['label'] = 'Heavy Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_heavyshotgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A large smoothbore gun for firing small shot at short range'},
|
||
|
['weapon_dbshotgun'] = {['name'] = 'weapon_dbshotgun', ['label'] = 'Double-barrel Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_dbshotgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A shotgun with two parallel barrels, allowing two single shots to be fired in quick succession'},
|
||
|
['weapon_autoshotgun'] = {['name'] = 'weapon_autoshotgun', ['label'] = 'Auto Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_autoshotgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A shotgun capable of rapid continous fire'},
|
||
|
['weapon_pumpshotgun_mk2'] = {['name'] = 'weapon_pumpshotgun_mk2', ['label'] = 'Pumpshotgun Mk II', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_pumpshotgun_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Pumpshotgun MK2'},
|
||
|
['weapon_combatshotgun'] = {['name'] = 'weapon_combatshotgun', ['label'] = 'Combat Shotgun', ['weight'] = 600, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SHOTGUN', ['image'] = 'weapon_combatshotgun.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Combatshotgun'},
|
||
|
|
||
|
-- Assault Rifles
|
||
|
['weapon_assaultrifle'] = {['name'] = 'weapon_assaultrifle', ['label'] = 'Assault Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_assaultrifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A rapid-fire, magazine-fed automatic rifle designed for infantry use'},
|
||
|
['weapon_assaultrifle_mk2'] = {['name'] = 'weapon_assaultrifle_mk2', ['label'] = 'Assault Rifle Mk II', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_assaultrifle_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Assault Rifle MK2'},
|
||
|
['weapon_tacticalrifle'] = {['name'] = 'weapon_tacticalrifle', ['label'] = 'Service Carbine', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_tacticalrifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A M16-based service rifle'},
|
||
|
['weapon_carbinerifle'] = {['name'] = 'weapon_carbinerifle', ['label'] = 'Carbine Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_carbinerifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A lightweight automatic rifle'},
|
||
|
['weapon_carbinerifle_mk2'] = {['name'] = 'weapon_carbinerifle_mk2', ['label'] = 'Carbine Rifle Mk II', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_carbinerifle_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Carbine Rifle MK2'},
|
||
|
['weapon_advancedrifle'] = {['name'] = 'weapon_advancedrifle', ['label'] = 'Advanced Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_advancedrifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An assault version of a rapid-fire, magazine-fed automatic rifle designed for infantry use'},
|
||
|
['weapon_specialcarbine'] = {['name'] = 'weapon_specialcarbine', ['label'] = 'Special Carbine', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_specialcarbine.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An extremely versatile assault rifle for any combat situation'},
|
||
|
['weapon_bullpuprifle'] = {['name'] = 'weapon_bullpuprifle', ['label'] = 'Bullpup Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_bullpuprifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A compact automatic assault rifle'},
|
||
|
['weapon_compactrifle'] = {['name'] = 'weapon_compactrifle', ['label'] = 'Compact Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_compactrifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A compact version of an assault rifle'},
|
||
|
['weapon_specialcarbine_mk2'] = {['name'] = 'weapon_specialcarbine_mk2', ['label'] = 'Special Carbine Mk II', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_specialcarbine_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Wpecialcarbine MK2'},
|
||
|
['weapon_bullpuprifle_mk2'] = {['name'] = 'weapon_bullpuprifle_mk2', ['label'] = 'Bullpup Rifle Mk II', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_bullpuprifle_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Bull Puprifle MK2'},
|
||
|
['weapon_militaryrifle'] = {['name'] = 'weapon_militaryrifle', ['label'] = 'Military Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RIFLE', ['image'] = 'weapon_militaryrifle.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Militaryrifle'},
|
||
|
|
||
|
-- Light Machine Guns
|
||
|
['weapon_mg'] = {['name'] = 'weapon_mg', ['label'] = 'Machinegun', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_MG', ['image'] = 'weapon_mg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An automatic gun that fires bullets in rapid succession for as long as the trigger is pressed'},
|
||
|
['weapon_combatmg'] = {['name'] = 'weapon_combatmg', ['label'] = 'Combat MG', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_MG', ['image'] = 'weapon_combatmg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A combat version of an automatic gun that fires bullets in rapid succession for as long as the trigger is pressed'},
|
||
|
['weapon_gusenberg'] = {['name'] = 'weapon_gusenberg', ['label'] = 'Thompson SMG', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_MG', ['image'] = 'weapon_gusenberg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An automatic rifle commonly referred to as a tommy gun'},
|
||
|
['weapon_combatmg_mk2'] = {['name'] = 'weapon_combatmg_mk2', ['label'] = 'Combat MG Mk II', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_MG', ['image'] = 'weapon_combatmg_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Combatmg MK2'},
|
||
|
|
||
|
-- Sniper Rifles
|
||
|
['weapon_sniperrifle'] = {['name'] = 'weapon_sniperrifle', ['label'] = 'Sniper Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SNIPER', ['image'] = 'weapon_sniperrifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A high-precision, long-range rifle'},
|
||
|
['weapon_heavysniper'] = {['name'] = 'weapon_heavysniper', ['label'] = 'Heavy Sniper', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SNIPER', ['image'] = 'weapon_heavysniper.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An upgraded high-precision, long-range rifle'},
|
||
|
['weapon_marksmanrifle'] = {['name'] = 'weapon_marksmanrifle', ['label'] = 'Marksman Rifle', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SNIPER', ['image'] = 'weapon_marksmanrifle.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A very accurate single-fire rifle'},
|
||
|
['weapon_remotesniper'] = {['name'] = 'weapon_remotesniper', ['label'] = 'Remote Sniper', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SNIPER_REMOTE', ['image'] = 'weapon_remotesniper.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A portable high-precision, long-range rifle'},
|
||
|
['weapon_heavysniper_mk2'] = {['name'] = 'weapon_heavysniper_mk2', ['label'] = 'Heavy Sniper Mk II', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SNIPER', ['image'] = 'weapon_heavysniper_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Heavysniper MK2'},
|
||
|
['weapon_marksmanrifle_mk2'] = {['name'] = 'weapon_marksmanrifle_mk2', ['label'] = 'Marksman Rifle Mk II', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_SNIPER', ['image'] = 'weapon_marksmanrifle_mk2.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Marksmanrifle MK2'},
|
||
|
|
||
|
-- Heavy Weapons
|
||
|
['weapon_rpg'] = {['name'] = 'weapon_rpg', ['label'] = 'RPG', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_RPG', ['image'] = 'weapon_rpg.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A rocket-propelled grenade launcher'},
|
||
|
['weapon_grenadelauncher'] = {['name'] = 'weapon_grenadelauncher', ['label'] = 'Grenade Launcher', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_GRENADELAUNCHER', ['image'] = 'weapon_grenadelauncher.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A weapon that fires a specially-designed large-caliber projectile, often with an explosive, smoke or gas warhead'},
|
||
|
['weapon_grenadelauncher_smoke'] = {['name'] = 'weapon_grenadelauncher_smoke', ['label'] = 'Smoke Grenade Launcher', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_GRENADELAUNCHER', ['image'] = 'weapon_smokegrenade.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A bomb that produces a lot of smoke when it explodes'},
|
||
|
['weapon_minigun'] = {['name'] = 'weapon_minigun', ['label'] = 'Minigun', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_MINIGUN', ['image'] = 'weapon_minigun.png', ['unique'] = true, ['useable'] = false, ['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'},
|
||
|
['weapon_firework'] = {['name'] = 'weapon_firework', ['label'] = 'Firework Launcher', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_firework.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A device containing gunpowder and other combustible chemicals that causes a spectacular explosion when ignited'},
|
||
|
['weapon_railgun'] = {['name'] = 'weapon_railgun', ['label'] = 'Railgun', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_railgun.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A weapon that uses electromagnetic force to launch high velocity projectiles'},
|
||
|
['weapon_hominglauncher'] = {['name'] = 'weapon_hominglauncher', ['label'] = 'Homing Launcher', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_STINGER', ['image'] = 'weapon_hominglauncher.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A weapon fitted with an electronic device that enables it to find and hit a target'},
|
||
|
['weapon_compactlauncher'] = {['name'] = 'weapon_compactlauncher', ['label'] = 'Compact Launcher', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_compactlauncher.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A compact grenade launcher'},
|
||
|
['weapon_rayminigun'] = {['name'] = 'weapon_rayminigun', ['label'] = 'Widowmaker', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_MINIGUN', ['image'] = 'weapon_rayminigun.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Rayminigun'},
|
||
|
|
||
|
-- Throwables
|
||
|
['weapon_grenade'] = {['name'] = 'weapon_grenade', ['label'] = 'Grenade', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_grenade.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A handheld throwable bomb'},
|
||
|
['weapon_bzgas'] = {['name'] = 'weapon_bzgas', ['label'] = 'BZ Gas', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_bzgas.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A cannister of gas that causes extreme pain'},
|
||
|
['weapon_molotov'] = {['name'] = 'weapon_molotov', ['label'] = 'Molotov', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_molotov.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A crude bomb made of a bottle filled with a flammable liquid and fitted with a wick for lighting'},
|
||
|
['weapon_stickybomb'] = {['name'] = 'weapon_stickybomb', ['label'] = 'C4', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_stickybomb.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An explosive charge covered with an adhesive that when thrown against an object sticks until it explodes'},
|
||
|
['weapon_proxmine'] = {['name'] = 'weapon_proxmine', ['label'] = 'Proxmine Grenade', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_proximitymine.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A bomb placed on the ground that detonates when going within its proximity'},
|
||
|
['weapon_snowball'] = {['name'] = 'weapon_snowball', ['label'] = 'Snowball', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_snowball.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A ball of packed snow, especially one made for throwing at other people for fun'},
|
||
|
['weapon_pipebomb'] = {['name'] = 'weapon_pipebomb', ['label'] = 'Pipe Bomb', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_pipebomb.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A homemade bomb, the components of which are contained in a pipe'},
|
||
|
['weapon_ball'] = {['name'] = 'weapon_ball', ['label'] = 'Ball', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_BALL', ['image'] = 'weapon_ball.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A solid or hollow spherical or egg-shaped object that is kicked, thrown, or hit in a game'},
|
||
|
['weapon_smokegrenade'] = {['name'] = 'weapon_smokegrenade', ['label'] = 'Smoke Grenade', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_c4.png', ['unique'] = true, ['useable'] = false, ['description'] = 'An explosive charge that can be remotely detonated'},
|
||
|
['weapon_flare'] = {['name'] = 'weapon_flare', ['label'] = 'Flare pistol', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_FLARE', ['image'] = 'weapon_flare.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A small pyrotechnic devices used for illumination and signalling'},
|
||
|
|
||
|
-- Miscellaneous
|
||
|
['fuelsiphon'] = {['name'] = 'fuelsiphon', ['label'] = 'Fuel Siphon', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'fuelsiphon.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A fuel siphon to extract fuel from vehicles'},
|
||
|
['weapon_petrolcan'] = {['name'] = 'weapon_petrolcan', ['label'] = 'Petrol Can', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PETROLCAN', ['image'] = 'weapon_petrolcan.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A robust liquid container made from pressed steel'},
|
||
|
['weapon_fireextinguisher'] = {['name'] = 'weapon_fireextinguisher', ['label'] = 'Fire Extinguisher', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'weapon_fireextinguisher.png', ['unique'] = true, ['useable'] = false, ['description'] = 'A portable device that discharges a jet of water, foam, gas, or other material to extinguish a fire'},
|
||
|
['weapon_hazardcan'] = {['name'] = 'weapon_hazardcan', ['label'] = 'Hazardous Jerry Can', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = 'AMMO_PETROLCAN', ['image'] = 'weapon_hazardcan.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Weapon Hazardcan'},
|
||
|
|
||
|
-- PISTOL ATTACHMENTS
|
||
|
['pistol_defaultclip'] = {['name'] = 'pistol_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pistol Default Clip'},
|
||
|
['pistol_extendedclip'] = {['name'] = 'pistol_extendedclip', ['label'] = 'Pistol EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pistol Extended Clip'},
|
||
|
['pistol_flashlight'] = {['name'] = 'pistol_flashlight', ['label'] = 'Pistol Flashlight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smg_flashlight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pistol Flashlight Attachment'},
|
||
|
['pistol_suppressor'] = {['name'] = 'pistol_suppressor', ['label'] = 'Pistol Suppressor', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pistol Suppressor Attachment'},
|
||
|
['pistol_luxuryfinish'] = {['name'] = 'pistol_luxuryfinish', ['label'] = 'Pistol Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pistol Luxury Finish'},
|
||
|
['pistol_scope'] = {['name'] = 'pistol_scope', ['label'] = 'Pistol Scope', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pistol Scope'},
|
||
|
['combatpistol_defaultclip'] = {['name'] = 'combatpistol_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat Pistol Default Clip'},
|
||
|
['combatpistol_extendedclip'] = {['name'] = 'combatpistol_extendedclip', ['label'] = 'Pistol EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat Pistol Extended Clip'},
|
||
|
['combatpistol_luxuryfinish'] = {['name'] = 'combatpistol_luxuryfinish', ['label'] = 'Pistol Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat Pistol Luxury Finish'},
|
||
|
['appistol_defaultclip'] = {['name'] = 'appistol_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'APPistol Default Clip'},
|
||
|
['appistol_extendedclip'] = {['name'] = 'appistol_extendedclip', ['label'] = 'Pistol EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'APPistol Extended Clip'},
|
||
|
['appistol_luxuryfinish'] = {['name'] = 'appistol_luxuryfinish', ['label'] = 'Pistol Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'APPistol Luxury Finish'},
|
||
|
['pistol50_defaultclip'] = {['name'] = 'pistol50_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '.50 Pistol Default Clip'},
|
||
|
['pistol50_extendedclip'] = {['name'] = 'pistol50_extendedclip', ['label'] = 'Pistol EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '.50 Pistol Extended Clip'},
|
||
|
['pistol50_luxuryfinish'] = {['name'] = 'pistol50_luxuryfinish', ['label'] = 'Pistol Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '.50 Pistol Luxury Finish'},
|
||
|
['revolver_defaultclip'] = {['name'] = 'revolver_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Revovler Default Clip'},
|
||
|
['revolver_vipvariant'] = {['name'] = 'revolver_vipvariant', ['label'] = 'Pistol Variant', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Revovler Variant'},
|
||
|
['revolver_bodyguardvariant'] = {['name'] = 'revolver_bodyguardvariant', ['label'] = 'Pistol Variant', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Revovler Variant'},
|
||
|
['snspistol_defaultclip'] = {['name'] = 'snspistol_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SNS Pistol Default Clip'},
|
||
|
['snspistol_extendedclip'] = {['name'] = 'snspistol_extendedclip', ['label'] = 'Pistol EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SNS Pistol Extended Clip'},
|
||
|
['snspistol_grip'] = {['name'] = 'snspistol_grip', ['label'] = 'Pistol Grip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SNS Pistol Grip Attachment'},
|
||
|
['heavypistol_defaultclip'] = {['name'] = 'heavypistol_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Pistol Default Clip'},
|
||
|
['heavypistol_extendedclip'] = {['name'] = 'heavypistol_extendedclip', ['label'] = 'Pistol EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Pistol Extended Clip'},
|
||
|
['heavypistol_grip'] = {['name'] = 'heavypistol_grip', ['label'] = 'Pistol Grip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Pistol Grip Attachment'},
|
||
|
['vintagepistol_defaultclip'] = {['name'] = 'vintagepistol_defaultclip', ['label'] = 'Pistol Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vintage Pistol Default Clip'},
|
||
|
['vintagepistol_extendedclip'] = {['name'] = 'vintagepistol_extendedclip', ['label'] = 'Pistol EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Vintage Pistol Default Clip'},
|
||
|
|
||
|
-- SMG ATTACHMENTS
|
||
|
['microsmg_defaultclip'] = {['name'] = 'microsmg_defaultclip', ['label'] = 'SMG Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Micro SMG Default Clip'},
|
||
|
['microsmg_extendedclip'] = {['name'] = 'microsmg_extendedclip', ['label'] = 'SMG EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Micro SMG Extended Clip'},
|
||
|
['microsmg_scope'] = {['name'] = 'microsmg_scope', ['label'] = 'SMG Scope', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Micro SMG Scope Attachment'},
|
||
|
['microsmg_luxuryfinish'] = {['name'] = 'microsmg_luxuryfinish', ['label'] = 'SMG Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Micro SMG Luxury Finish'},
|
||
|
['smg_defaultclip'] = {['name'] = 'smg_defaultclip', ['label'] = 'SMG Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SMG Default Clip'},
|
||
|
['smg_extendedclip'] = {['name'] = 'smg_extendedclip', ['label'] = 'SMG EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SMG Extended Clip'},
|
||
|
['smg_suppressor'] = {['name'] = 'smg_suppressor', ['label'] = 'SMG Suppressor', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SMG Suppressor'},
|
||
|
['smg_drum'] = {['name'] = 'smg_drum', ['label'] = 'SMG Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SMG Drum'},
|
||
|
['smg_scope'] = {['name'] = 'smg_scope', ['label'] = 'SMG Scope', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SMG Scope Attachment'},
|
||
|
['smg_luxuryfinish'] = {['name'] = 'smg_luxuryfinish', ['label'] = 'SMG Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'SMG Luxury Finish'},
|
||
|
['assaultsmg_defaultclip'] = {['name'] = 'assaultsmg_defaultclip', ['label'] = 'SMG Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault SMG Default Clip'},
|
||
|
['assaultsmg_extendedclip'] = {['name'] = 'assaultsmg_extendedclip', ['label'] = 'SMG EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault SMG Extended Clip'},
|
||
|
['assaultsmg_luxuryfinish'] = {['name'] = 'assaultsmg_luxuryfinish', ['label'] = 'SMG Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault SMG Luxury Finish'},
|
||
|
['minismg_defaultclip'] = {['name'] = 'minismg_defaultclip', ['label'] = 'SMG Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mini SMG Default Clip'},
|
||
|
['minismg_extendedclip'] = {['name'] = 'minismg_extendedclip', ['label'] = 'SMG EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mini SMG Extended Clip'},
|
||
|
['machinepistol_defaultclip'] = {['name'] = 'machinepistol_defaultclip', ['label'] = 'SMG Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Machine Pistol Default Clip'},
|
||
|
['machinepistol_extendedclip'] = {['name'] = 'machinepistol_extendedclip', ['label'] = 'SMG EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Machine Pistol Extended Clip'},
|
||
|
['machinepistol_drum'] = {['name'] = 'machinepistol_drum', ['label'] = 'SMG Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Machine Pistol Drum'},
|
||
|
['combatpdw_defaultclip'] = {['name'] = 'combatpdw_defaultclip', ['label'] = 'SMG Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat PDW Default Clip'},
|
||
|
['combatpdw_extendedclip'] = {['name'] = 'combatpdw_extendedclip', ['label'] = 'SMG EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat PDW Extended Clip'},
|
||
|
['combatpdw_drum'] = {['name'] = 'combatpdw_drum', ['label'] = 'SMG Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat PDW Drum'},
|
||
|
['combatpdw_grip'] = {['name'] = 'combatpdw_grip', ['label'] = 'SMG Grip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat PDW Grip Attachment'},
|
||
|
['combatpdw_scope'] = {['name'] = 'combatpdw_scope', ['label'] = 'SMG Scope', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Combat PDW Scope Attachment'},
|
||
|
|
||
|
-- SHOTGUN ATTACHMENTS
|
||
|
['shotgun_suppressor'] = {['name'] = 'shotgun_suppressor', ['label'] = 'Shotgun Suppressor', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Shotgun Suppressor Attachment'},
|
||
|
['pumpshotgun_luxuryfinish'] = {['name'] = 'pumpshotgun_luxuryfinish', ['label'] = 'Shotgun Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pump Shotgun Luxury Finish'},
|
||
|
['sawnoffshotgun_luxuryfinish'] = {['name'] = 'sawnoffshotgun_luxuryfinish', ['label'] = 'Shotgun Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sawn Off Shotgun Luxury Finish'},
|
||
|
['assaultshotgun_defaultclip'] = {['name'] = 'assaultshotgun_defaultclip', ['label'] = 'Shotgun Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault Shotgun Default Clip'},
|
||
|
['assaultshotgun_extendedclip'] = {['name'] = 'assaultshotgun_extendedclip', ['label'] = 'Shotgun EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault Shotgun Extended Clip'},
|
||
|
['heavyshotgun_defaultclip'] = {['name'] = 'heavyshotgun_defaultclip', ['label'] = 'Shotgun Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Shotgun Default Clip'},
|
||
|
['heavyshotgun_extendedclip'] = {['name'] = 'heavyshotgun_extendedclip', ['label'] = 'Shotgun EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Shotgun Extended Clip'},
|
||
|
['heavyshotgun_drum'] = {['name'] = 'heavyshotgun_drum', ['label'] = 'Shotgun Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Shotgun Drum'},
|
||
|
|
||
|
-- RIFLE ATTACHMENTS
|
||
|
['assaultrifle_defaultclip'] = {['name'] = 'assaultrifle_defaultclip', ['label'] = 'Rifle Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault Rifle Default Clip'},
|
||
|
['assaultrifle_extendedclip'] = {['name'] = 'assaultrifle_extendedclip', ['label'] = 'Rifle EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault Rifle Extended Clip'},
|
||
|
['assaultrifle_drum'] = {['name'] = 'assaultrifle_drum', ['label'] = 'Rifle Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault Rifle Drum'},
|
||
|
['rifle_flashlight'] = {['name'] = 'rifle_flashlight', ['label'] = 'Rifle Flashlight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smg_flashlight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rifle Flashlight Attachment'},
|
||
|
['rifle_grip'] = {['name'] = 'rifle_grip', ['label'] = 'Rifle Grip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rifle Grip Attachment'},
|
||
|
['rifle_suppressor'] = {['name'] = 'rifle_suppressor', ['label'] = 'Rifle Suppressor', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rifle Suppressor Attachment'},
|
||
|
['assaultrifle_luxuryfinish'] = {['name'] = 'assaultrifle_luxuryfinish', ['label'] = 'Rifle Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Assault Rifle Luxury Finish'},
|
||
|
['carbinerifle_defaultclip'] = {['name'] = 'carbinerifle_defaultclip', ['label'] = 'Rifle Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Carbine Rifle Default Clip'},
|
||
|
['carbinerifle_extendedclip'] = {['name'] = 'carbinerifle_extendedclip', ['label'] = 'Rifle EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Carbine Rifle Extended Clip'},
|
||
|
['carbinerifle_drum'] = {['name'] = 'carbinerifle_drum', ['label'] = 'Rifle Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Carbine Rifle Drum'},
|
||
|
['carbinerifle_scope'] = {['name'] = 'carbinerifle_scope', ['label'] = 'Rifle Scope', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Carbine Rifle Scope'},
|
||
|
['carbinerifle_luxuryfinish'] = {['name'] = 'carbinerifle_luxuryfinish', ['label'] = 'Rifle Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Carbine Rifle Luxury Finish'},
|
||
|
['advancedrifle_defaultclip'] = {['name'] = 'advancedrifle_defaultclip', ['label'] = 'Rifle Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Advanced Rifle Default Clip'},
|
||
|
['advancedrifle_extendedclip'] = {['name'] = 'advancedrifle_extendedclip', ['label'] = 'Rifle EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Advanced Rifle Extended Clip'},
|
||
|
['advancedrifle_luxuryfinish'] = {['name'] = 'advancedrifle_luxuryfinish', ['label'] = 'Rifle Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Advanced Rifle Luxury Finish'},
|
||
|
['specialcarbine_defaultclip'] = {['name'] = 'specialcarbine_defaultclip', ['label'] = 'Rifle Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Special Carbine Default Clip'},
|
||
|
['specialcarbine_extendedclip'] = {['name'] = 'specialcarbine_extendedclip', ['label'] = 'Rifle EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Special Carbine Extended Clip'},
|
||
|
['specialcarbine_drum'] = {['name'] = 'specialcarbine_drum', ['label'] = 'Rifle Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Special Carbine Drum'},
|
||
|
['specialcarbine_luxuryfinish'] = {['name'] = 'specialcarbine_luxuryfinish', ['label'] = 'Rifle Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Special Carbine Luxury Finish'},
|
||
|
['bullpuprifle_defaultclip'] = {['name'] = 'bullpuprifle_defaultclip', ['label'] = 'Rifle Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bullpup Rifle Default Clip'},
|
||
|
['bullpuprifle_extendedclip'] = {['name'] = 'bullpuprifle_extendedclip', ['label'] = 'Rifle EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bullpup Rifle Extended Clip'},
|
||
|
['bullpuprifle_luxuryfinish'] = {['name'] = 'bullpuprifle_luxuryfinish', ['label'] = 'Rifle Finish', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bullpup Rifle Luxury Finish'},
|
||
|
['compactrifle_defaultclip'] = {['name'] = 'compactrifle_defaultclip', ['label'] = 'Rifle Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Compact Rifle Default Clip'},
|
||
|
['compactrifle_extendedclip'] = {['name'] = 'compactrifle_extendedclip', ['label'] = 'Rifle EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Compact Rifle Extended Clip'},
|
||
|
['compactrifle_drum'] = {['name'] = 'compactrifle_drum', ['label'] = 'Rifle Drum', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rifle_drummag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Compact Rifle Drum'},
|
||
|
['gusenberg_defaultclip'] = {['name'] = 'gusenberg_defaultclip', ['label'] = 'Rifle Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Gusenberg Default Clip'},
|
||
|
['gusenberg_extendedclip'] = {['name'] = 'gusenberg_extendedclip', ['label'] = 'Rifle EXT Clip', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Gusenberg Extended Clip'},
|
||
|
|
||
|
-- SNIPER ATTACHMENTS
|
||
|
['sniperrifle_defaultclip'] = {['name'] = 'sniperrifle_defaultclip', ['label'] = 'Sniper Suppressor', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sniper Rifle Default Clip'},
|
||
|
['sniper_scope'] = {['name'] = 'sniper_scope', ['label'] = 'Sniper Scope', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sniper Rifle Scope Attachment'},
|
||
|
['snipermax_scope'] = {['name'] = 'snipermax_scope', ['label'] = 'Sniper Max Scope', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sniper Rifle Max Scope Attachment'},
|
||
|
['sniper_grip'] = {['name'] = 'sniper_grip', ['label'] = 'Sniper Grip', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sniper Rifle Grip Attachment'},
|
||
|
['heavysniper_defaultclip'] = {['name'] = 'heavysniper_defaultclip', ['label'] = 'Sniper Clip', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy Sniper Default Clip'},
|
||
|
['marksmanrifle_defaultclip'] = {['name'] = 'marksmanrifle_defaultclip', ['label'] = 'Sniper Clip', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Marksman Rifle Default Clip'},
|
||
|
['marksmanrifle_extendedclip'] = {['name'] = 'marksmanrifle_extendedclip', ['label'] = 'Sniper EXT Clip', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'pistol_extendedclip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Marksman Rifle Extended Clip'},
|
||
|
['marksmanrifle_scope'] = {['name'] = 'marksmanrifle_scope', ['label'] = 'Sniper Scope', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'smg_scope.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Marksman Rifle Scope Attachment'},
|
||
|
['marksmanrifle_luxuryfinish'] = {['name'] = 'marksmanrifle_luxuryfinish', ['label'] = 'Sniper Finish', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'pistol_suppressor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Marksman Rifle Luxury Finish'},
|
||
|
|
||
|
-- Weapon Tints
|
||
|
['weapontint_black'] = {['name'] = 'weapontint_black', ['label'] = 'Default Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_black.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Default/Black Weapon Tint'},
|
||
|
['weapontint_green'] = {['name'] = 'weapontint_green', ['label'] = 'Green Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_green.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Green Weapon Tint'},
|
||
|
['weapontint_gold'] = {['name'] = 'weapontint_gold', ['label'] = 'Gold Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_gold.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Gold Weapon Tint'},
|
||
|
['weapontint_pink'] = {['name'] = 'weapontint_pink', ['label'] = 'Pink Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_pink.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pink Weapon Tint'},
|
||
|
['weapontint_army'] = {['name'] = 'weapontint_army', ['label'] = 'Army Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_army.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Army Weapon Tint'},
|
||
|
['weapontint_lspd'] = {['name'] = 'weapontint_lspd', ['label'] = 'LSPD Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_lspd.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'LSPD Weapon Tint'},
|
||
|
['weapontint_orange'] = {['name'] = 'weapontint_orange', ['label'] = 'Orange Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_orange.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Orange Weapon Tint'},
|
||
|
['weapontint_plat'] = {['name'] = 'weapontint_plat', ['label'] = 'Platinum Tint', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapontint_plat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Platinum Weapon Tint'},
|
||
|
|
||
|
-- ITEMS
|
||
|
-- Ammo ITEMS
|
||
|
["taserammo"] = {["name"] = "taserammo", ["label"] = "Taser Cartridges", ["weight"] = 3000, ["type"] = "item", ["image"] = "taserammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "No More Spamming. lul"},
|
||
|
['pistol_ammo'] = {['name'] = 'pistol_ammo', ['label'] = 'Pistol ammo', ['weight'] = 20, ['type'] = 'item', ['image'] = 'pistol_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Pistols'},
|
||
|
['rifle_ammo'] = {['name'] = 'rifle_ammo', ['label'] = 'Rifle ammo', ['weight'] = 10, ['type'] = 'item', ['image'] = 'rifle_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Rifles'},
|
||
|
['smg_ammo'] = {['name'] = 'smg_ammo', ['label'] = 'SMG ammo', ['weight'] = 50, ['type'] = 'item', ['image'] = 'smg_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Sub Machine Guns'},
|
||
|
['shotgun_ammo'] = {['name'] = 'shotgun_ammo', ['label'] = 'Shotgun ammo', ['weight'] = 50, ['type'] = 'item', ['image'] = 'shotgun_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Shotguns'},
|
||
|
['mg_ammo'] = {['name'] = 'mg_ammo', ['label'] = 'MG ammo', ['weight'] = 10, ['type'] = 'item', ['image'] = 'mg_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Machine Guns'},
|
||
|
['snp_ammo'] = {['name'] = 'snp_ammo', ['label'] = 'Sniper ammo', ['weight'] = 10, ['type'] = 'item', ['image'] = 'rifle_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Sniper Rifles'},
|
||
|
['emp_ammo'] = {['name'] = 'emp_ammo', ['label'] = 'EMP Ammo', ['weight'] = 20, ['type'] = 'item', ['image'] = 'emp_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for EMP Launcher'},
|
||
|
|
||
|
-- Card ITEMS
|
||
|
['id_card'] = {['name'] = 'id_card', ['label'] = 'ID Card', ['weight'] = 0, ['type'] = 'item', ['image'] = 'id_card.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A card containing all your information to identify yourself', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['driver_license'] = {['name'] = 'driver_license', ['label'] = 'Drivers License', ['weight'] = 0, ['type'] = 'item', ['image'] = 'driver_license.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Permit to show you can drive a vehicle', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['lawyerpass'] = {['name'] = 'lawyerpass', ['label'] = 'Lawyer Pass', ['weight'] = 0, ['type'] = 'item', ['image'] = 'lawyerpass.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Pass exclusive to lawyers to show they can represent a suspect'},
|
||
|
['weaponlicense'] = {['name'] = 'weaponlicense', ['label'] = 'Weapon License', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weapon_license.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Weapon License'},
|
||
|
['visa'] = {['name'] = 'visa', ['label'] = 'Visa Card', ['weight'] = 0, ['type'] = 'item', ['image'] = 'visacard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Visa can be used via ATM'},
|
||
|
['mastercard'] = {['name'] = 'mastercard', ['label'] = 'Master Card', ['weight'] = 0, ['type'] = 'item', ['image'] = 'mastercard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'MasterCard can be used via ATM'},
|
||
|
['security_card_01'] = {['name'] = 'security_card_01', ['label'] = 'Security Card A', ['weight'] = 0, ['type'] = 'item', ['image'] = 'security_card_01.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A security card... I wonder what it goes to'},
|
||
|
['security_card_02'] = {['name'] = 'security_card_02', ['label'] = 'Security Card B', ['weight'] = 0, ['type'] = 'item', ['image'] = 'security_card_02.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A security card... I wonder what it goes to'},
|
||
|
|
||
|
-- Eat ITEMS
|
||
|
['tosti'] = {['name'] = 'tosti', ['label'] = 'Grilled Cheese Sandwich', ['weight'] = 20, ['type'] = 'item', ['image'] = 'tosti.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['twerks_candy'] = {['name'] = 'twerks_candy', ['label'] = 'Twerks', ['weight'] = 10, ['type'] = 'item', ['image'] = 'twerks_candy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some delicious candy :O', ["decay"] = 0.0, ["delete"] = false},
|
||
|
['snikkel_candy'] = {['name'] = 'snikkel_candy', ['label'] = 'Snikkel', ['weight'] = 10, ['type'] = 'item', ['image'] = 'snikkel_candy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some delicious candy :O', ["decay"] = 0.0, ["delete"] = false},
|
||
|
['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 20, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Drink ITEMS
|
||
|
['water_bottle'] = {['name'] = 'water_bottle', ['label'] = 'Bottle of Water', ['weight'] = 50, ['type'] = 'item', ['image'] = 'water_bottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ["created"] = nil},
|
||
|
['coffee'] = {['name'] = 'coffee', ['label'] = 'Coffee', ['weight'] = 20, ['type'] = 'item', ['image'] = 'coffee.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pump 4 Caffeine', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['kurkakola'] = {['name'] = 'kurkakola', ['label'] = 'Cola', ['weight'] = 50, ['type'] = 'item', ['image'] = 'cola.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Alcohol
|
||
|
['beer'] = {['name'] = 'beer', ['label'] = 'Beer', ['weight'] = 50, ['type'] = 'item', ['image'] = 'beer.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nothing like a good cold beer!', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['whiskey'] = {['name'] = 'whiskey', ['label'] = 'Whiskey', ['weight'] = 50, ['type'] = 'item', ['image'] = 'whiskey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['vodka'] = {['name'] = 'vodka', ['label'] = 'Vodka', ['weight'] = 50, ['type'] = 'item', ['image'] = 'vodka.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['grape'] = {['name'] = 'grape', ['label'] = 'Grape', ['weight'] = 10, ['type'] = 'item', ['image'] = 'grape.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Mmmmh yummie, grapes', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['wine'] = {['name'] = 'wine', ['label'] = 'Wine', ['weight'] = 30, ['type'] = 'item', ['image'] = 'wine.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Some good wine to drink on a fine evening', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['grapejuice'] = {['name'] = 'grapejuice', ['label'] = 'Grape Juice', ['weight'] = 20, ['type'] = 'item', ['image'] = 'grapejuice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Grape juice is said to be healthy', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Drugs
|
||
|
['joint'] = {['name'] = 'joint', ['label'] = 'Joint', ['weight'] = 0, ['type'] = 'item', ['image'] = 'joint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sidney would be very proud at you', ["created"] = nil},
|
||
|
['cokebaggy'] = {['name'] = 'cokebaggy', ['label'] = 'Bag of Coke', ['weight'] = 0, ['type'] = 'item', ['image'] = 'cocaine_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To get happy real quick', ["created"] = nil},
|
||
|
['crack_baggy'] = {['name'] = 'crack_baggy', ['label'] = 'Bag of Crack', ['weight'] = 0, ['type'] = 'item', ['image'] = 'crack_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To get happy faster'},
|
||
|
['xtcbaggy'] = {['name'] = 'xtcbaggy', ['label'] = 'Bag of XTC', ['weight'] = 0, ['type'] = 'item', ['image'] = 'xtc_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pop those pills baby'},
|
||
|
['weed_brick'] = {['name'] = 'weed_brick', ['label'] = 'Weed Brick', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_brick.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '1KG Weed Brick to sell to large customers.'},
|
||
|
['coke_brick'] = {['name'] = 'coke_brick', ['label'] = 'Coke Brick', ['weight'] = 10, ['type'] = 'item', ['image'] = 'coke_brick.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy package of cocaine, mostly used for deals and takes a lot of space'},
|
||
|
['coke_small_brick'] = {['name'] = 'coke_small_brick', ['label'] = 'Coke Package', ['weight'] = 35, ['type'] = 'item', ['image'] = 'coke_small_brick.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Small package of cocaine, mostly used for deals and takes a lot of space'},
|
||
|
['oxy'] = {['name'] = 'oxy', ['label'] = 'Prescription Oxy', ['weight'] = 0, ['type'] = 'item', ['image'] = 'oxy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The Label Has Been Ripped Off', ["created"] = nil},
|
||
|
['meth'] = {['name'] = 'meth', ['label'] = 'Meth', ['weight'] = 10, ['type'] = 'item', ['image'] = 'meth_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A baggie of Meth', ["created"] = nil},
|
||
|
['rolling_paper'] = {['name'] = 'rolling_paper', ['label'] = 'Rolling Paper', ['weight'] = 0, ['type'] = 'item', ['image'] = 'rolling_paper.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = {accept = {'weed_white-widow', 'weed_skunk', 'weed_purple-haze', 'weed_og-kush', 'weed_amnesia', 'weed_ak47'}, reward = 'joint', anim = {['dict'] = 'anim@amb@business@weed@weed_inspecting_high_dry@', ['lib'] = 'weed_inspecting_high_base_inspector', ['text'] = 'Rolling joint', ['timeOut'] = 5000, }}, ['description'] = 'Paper made specifically for encasing and smoking tobacco or cannabis.'},
|
||
|
|
||
|
-- Seed And Weed
|
||
|
['weed_white-widow'] = {['name'] = 'weed_white-widow', ['label'] = 'White Widow 2g', ['weight'] = 20, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g White Widow'},
|
||
|
['weed_skunk'] = {['name'] = 'weed_skunk', ['label'] = 'Skunk 2g', ['weight'] = 20, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g Skunk'},
|
||
|
['weed_purple-haze'] = {['name'] = 'weed_purple-haze', ['label'] = 'Purple Haze 2g', ['weight'] = 20, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g Purple Haze'},
|
||
|
['weed_og-kush'] = {['name'] = 'weed_og-kush', ['label'] = 'OGKush 2g', ['weight'] = 20, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g OG Kush'},
|
||
|
['weed_amnesia'] = {['name'] = 'weed_amnesia', ['label'] = 'Amnesia 2g', ['weight'] = 20, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g Amnesia'},
|
||
|
['weed_ak47'] = {['name'] = 'weed_ak47', ['label'] = 'AK47 2g', ['weight'] = 20, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g AK47'},
|
||
|
['weed_white-widow_seed'] = {['name'] = 'weed_white-widow_seed', ['label'] = 'White Widow Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed seed of White Widow'},
|
||
|
['weed_skunk_seed'] = {['name'] = 'weed_skunk_seed', ['label'] = 'Skunk Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of Skunk'},
|
||
|
['weed_purple-haze_seed'] = {['name'] = 'weed_purple-haze_seed', ['label'] = 'Purple Haze Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of Purple Haze'},
|
||
|
['weed_og-kush_seed'] = {['name'] = 'weed_og-kush_seed', ['label'] = 'OGKush Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of OG Kush'},
|
||
|
['weed_amnesia_seed'] = {['name'] = 'weed_amnesia_seed', ['label'] = 'Amnesia Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of Amnesia'},
|
||
|
['weed_ak47_seed'] = {['name'] = 'weed_ak47_seed', ['label'] = 'AK47 Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of AK47'},
|
||
|
['empty_weed_bag'] = {['name'] = 'empty_weed_bag', ['label'] = 'Empty Weed Bag', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_baggy_empty.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small empty bag'},
|
||
|
['weed_nutrition'] = {['name'] = 'weed_nutrition', ['label'] = 'Plant Fertilizer', ['weight'] = 20, ['type'] = 'item', ['image'] = 'weed_nutrition.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Plant nutrition'},
|
||
|
|
||
|
-- Material
|
||
|
['plastic'] = {['name'] = 'plastic', ['label'] = 'Plastic', ['weight'] = 10, ['type'] = 'item', ['image'] = 'plastic.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'RECYCLE! - Greta Thunberg 2019', ["created"] = nil},
|
||
|
['metalscrap'] = {['name'] = 'metalscrap', ['label'] = 'Metal Scrap', ['weight'] = 10, ['type'] = 'item', ['image'] = 'metalscrap.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'You can probably make something nice out of this', ["created"] = nil},
|
||
|
['copper'] = {['name'] = 'copper', ['label'] = 'Copper', ['weight'] = 10, ['type'] = 'item', ['image'] = 'copper.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Nice piece of metal that you can probably use for something', ["created"] = nil},
|
||
|
['aluminum'] = {['name'] = 'aluminum', ['label'] = 'Aluminium', ['weight'] = 10, ['type'] = 'item', ['image'] = 'aluminum.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Nice piece of metal that you can probably use for something', ["created"] = nil},
|
||
|
['aluminumoxide'] = {['name'] = 'aluminumoxide', ['label'] = 'Aluminium Powder', ['weight'] = 10, ['type'] = 'item', ['image'] = 'aluminumoxide.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Some powder to mix with', ["created"] = nil},
|
||
|
['iron'] = {['name'] = 'iron', ['label'] = 'Iron', ['weight'] = 10, ['type'] = 'item', ['image'] = 'iron.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Handy piece of metal that you can probably use for something', ["created"] = nil},
|
||
|
['ironoxide'] = {['name'] = 'ironoxide', ['label'] = 'Iron Powder', ['weight'] = 10, ['type'] = 'item', ['image'] = 'ironoxide.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = {accept = {'aluminumoxide'}, reward = 'thermite', anim = {['dict'] = 'anim@amb@business@weed@weed_inspecting_high_dry@', ['lib'] = 'weed_inspecting_high_base_inspector', ['text'] = 'Mixing powder..', ['timeOut'] = 10000}}, ['description'] = 'Some powder to mix with.', ["created"] = nil},
|
||
|
['steel'] = {['name'] = 'steel', ['label'] = 'Steel', ['weight'] = 10, ['type'] = 'item', ['image'] = 'steel.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Nice piece of metal that you can probably use for something', ["created"] = nil},
|
||
|
['rubber'] = {['name'] = 'rubber', ['label'] = 'Rubber', ['weight'] = 10, ['type'] = 'item', ['image'] = 'rubber.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Rubber, I believe you can make your own rubber ducky with it :D', ["created"] = nil},
|
||
|
['glass'] = {['name'] = 'glass', ['label'] = 'Glass', ['weight'] = 10, ['type'] = 'item', ['image'] = 'glass.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile, watch out', ["created"] = nil},
|
||
|
|
||
|
-- Tools
|
||
|
['lockpick'] = {['name'] = 'lockpick', ['label'] = 'Lockpick', ['weight'] = 30, ['type'] = 'item', ['image'] = 'lockpick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = {accept = {'screwdriverset'}, reward = 'advancedlockpick', anim = {['dict'] = 'anim@amb@business@weed@weed_inspecting_high_dry@', ['lib'] = 'weed_inspecting_high_base_inspector', ['text'] = 'Crafting lockpick', ['timeOut'] = 7500, }}, ['description'] = 'Very useful if you lose your keys a lot.. or if you want to use it for something else...', ["created"] = nil},
|
||
|
['advancedlockpick'] = {['name'] = 'advancedlockpick', ['label'] = 'Advanced Lockpick', ['weight'] = 50, ['type'] = 'item', ['image'] = 'advancedlockpick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'If you lose your keys a lot this is very useful... Also useful to open your beers', ["created"] = nil},
|
||
|
['electronickit'] = {['name'] = 'electronickit', ['label'] = 'Electronic Kit', ['weight'] = 10, ['type'] = 'item', ['image'] = 'electronickit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = {accept = {'gatecrack'}, reward = 'trojan_usb', anim = nil}, ['description'] = 'If you\'ve always wanted to build a robot you can maybe start here. Maybe you\'ll be the new Elon Musk?', ["created"] = nil},
|
||
|
['gatecrack'] = {['name'] = 'gatecrack', ['label'] = 'Gatecrack', ['weight'] = 0, ['type'] = 'item', ['image'] = 'usb_device.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Handy software to tear down some fences', ["created"] = nil},
|
||
|
['thermite'] = {['name'] = 'thermite', ['label'] = 'Thermite', ['weight'] = 10, ['type'] = 'item', ['image'] = 'thermite.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sometimes you\'d wish for everything to burn', ["created"] = nil},
|
||
|
['trojan_usb'] = {['name'] = 'trojan_usb', ['label'] = 'Trojan USB', ['weight'] = 0, ['type'] = 'item', ['image'] = 'usb_device.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Handy software to shut down some systems', ["created"] = nil},
|
||
|
['screwdriverset'] = {['name'] = 'screwdriverset', ['label'] = 'Toolkit', ['weight'] = 10, ['type'] = 'item', ['image'] = 'screwdriverset.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Very useful to screw... screws...', ["created"] = nil},
|
||
|
['drill'] = {['name'] = 'drill', ['label'] = 'Drill', ['weight'] = 20, ['type'] = 'item', ['image'] = 'drill.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'The real deal...', ["created"] = nil},
|
||
|
['shears'] = {['name'] = 'shears', ['label'] = 'Shears', ['weight'] = 20, ['type'] = 'item', ['image'] = 'drug_shears.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Used to maintain hedges!', ["created"] = nil},
|
||
|
|
||
|
-- Vehicle Tools
|
||
|
['nitrous'] = {['name'] = 'nitrous', ['label'] = 'Nitrous', ['weight'] = 10, ['type'] = 'item', ['image'] = 'nitrous.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Speed up, gas pedal! :D', ["created"] = nil},
|
||
|
['repairkit'] = {['name'] = 'repairkit', ['label'] = 'Repairkit', ['weight'] = 20, ['type'] = 'item', ['image'] = 'repairkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice toolbox with stuff to repair your vehicle', ["created"] = nil},
|
||
|
['advancedrepairkit'] = {['name'] = 'advancedrepairkit', ['label'] = 'Advanced Repairkit', ['weight'] = 40, ['type'] = 'item', ['image'] = 'advancedkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice toolbox with stuff to repair your vehicle', ["created"] = nil},
|
||
|
['cleaningkit'] = {['name'] = 'cleaningkit', ['label'] = 'Cleaning Kit', ['weight'] = 25, ['type'] = 'item', ['image'] = 'cleaningkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A microfiber cloth with some soap will let your car sparkle again!', ["created"] = nil},
|
||
|
['tunerlaptop'] = {['name'] = 'tunerlaptop', ['label'] = 'Tunerchip', ['weight'] = 20, ['type'] = 'item', ['image'] = 'tunerchip.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'With this tunerchip you can get your car on steroids... If you know what you\'re doing', ["created"] = nil},
|
||
|
['harness'] = {['name'] = 'harness', ['label'] = 'Race Harness', ['weight'] = 10, ['type'] = 'item', ['image'] = 'harness.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Racing Harness so no matter what you stay in the car', ["created"] = nil},
|
||
|
['jerry_can'] = {['name'] = 'jerry_can', ['label'] = 'Jerrycan 20L', ['weight'] = 20, ['type'] = 'item', ['image'] = 'jerry_can.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A can full of Fuel', ["created"] = nil},
|
||
|
|
||
|
-- Medication
|
||
|
['firstaid'] = {['name'] = 'firstaid', ['label'] = 'First Aid', ['weight'] = 25, ['type'] = 'item', ['image'] = 'firstaid.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'You can use this First Aid kit to get people back on their feet', ["created"] = nil},
|
||
|
['bandage'] = {['name'] = 'bandage', ['label'] = 'Bandage', ['weight'] = 0, ['type'] = 'item', ['image'] = 'bandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bandage works every time', ["created"] = nil},
|
||
|
['ifaks'] = {['name'] = 'ifaks', ['label'] = 'ifaks', ['weight'] = 20, ['type'] = 'item', ['image'] = 'ifaks.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'ifaks for healing and a complete stress remover.', ["created"] = nil},
|
||
|
['painkillers'] = {['name'] = 'painkillers', ['label'] = 'Painkillers', ['weight'] = 0, ['type'] = 'item', ['image'] = 'painkillers.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For pain you can\'t stand anymore, take this pill that\'d make you feel great again', ["created"] = nil},
|
||
|
['walkstick'] = {['name'] = 'walkstick', ['label'] = 'Walking Stick', ['weight'] = 10, ['type'] = 'item', ['image'] = 'walkstick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Walking stick for ya\'ll grannies out there.. HAHA', ["created"] = nil},
|
||
|
|
||
|
-- Communication
|
||
|
['phone'] = {['name'] = 'phone', ['label'] = 'Phone', ['weight'] = 70, ['type'] = 'item', ['image'] = 'phone.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Neat phone ya got there', ["created"] = nil},
|
||
|
['radio'] = {['name'] = 'radio', ['label'] = 'Radio', ['weight'] = 20, ['type'] = 'item', ['image'] = 'radio.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'You can communicate with this through a signal', ["created"] = nil},
|
||
|
['iphone'] = {['name'] = 'iphone', ['label'] = 'iPhone', ['weight'] = 10, ['type'] = 'item', ['image'] = 'iphone.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Very expensive phone', ["created"] = nil},
|
||
|
['samsungphone'] = {['name'] = 'samsungphone', ['label'] = 'Samsung S10', ['weight'] = 10, ['type'] = 'item', ['image'] = 'samsungphone.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Very expensive phone', ["created"] = nil},
|
||
|
['laptop'] = {['name'] = 'laptop', ['label'] = 'Laptop', ['weight'] = 40, ['type'] = 'item', ['image'] = 'laptop.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Expensive laptop', ["created"] = nil},
|
||
|
['tablet'] = {['name'] = 'tablet', ['label'] = 'Tablet', ['weight'] = 20, ['type'] = 'item', ['image'] = 'tablet.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Expensive tablet', ["created"] = nil},
|
||
|
['fitbit'] = {['name'] = 'fitbit', ['label'] = 'Fitbit', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fitbit.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'I like fitbit', ["created"] = nil},
|
||
|
['radioscanner'] = {['name'] = 'radioscanner', ['label'] = 'Radio Scanner', ['weight'] = 10, ['type'] = 'item', ['image'] = 'radioscanner.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'With this you can get some police alerts. Not 100% effective however', ["created"] = nil},
|
||
|
['pinger'] = {['name'] = 'pinger', ['label'] = 'Pinger', ['weight'] = 10, ['type'] = 'item', ['image'] = 'pinger.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'With a pinger and your phone you can send out your location', ["created"] = nil},
|
||
|
['cryptostick'] = {['name'] = 'cryptostick', ['label'] = 'Crypto Stick', ['weight'] = 20, ['type'] = 'item', ['image'] = 'cryptostick.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Why would someone ever buy money that doesn\'t exist.. How many would it contain..?', ["created"] = nil},
|
||
|
|
||
|
-- Theft and Jewelry
|
||
|
['rolex'] = {['name'] = 'rolex', ['label'] = 'Golden Watch', ['weight'] = 10, ['type'] = 'item', ['image'] = 'rolex.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A golden watch seems like the jackpot to me!', ["created"] = nil},
|
||
|
['diamond_ring'] = {['name'] = 'diamond_ring', ['label'] = 'Diamond Ring', ['weight'] = 10, ['type'] = 'item', ['image'] = 'diamond_ring.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A diamond ring seems like the jackpot to me!', ["created"] = nil},
|
||
|
['diamond'] = {['name'] = 'diamond', ['label'] = 'Diamond', ['weight'] = 10, ['type'] = 'item', ['image'] = 'diamond.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A diamond seems like the jackpot to me!', ["created"] = nil},
|
||
|
['goldchain'] = {['name'] = 'goldchain', ['label'] = 'Golden Chain', ['weight'] = 15, ['type'] = 'item', ['image'] = 'goldchain.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A golden chain seems like the jackpot to me!', ["created"] = nil},
|
||
|
['10kgoldchain'] = {['name'] = '10kgoldchain', ['label'] = '10k Gold Chain', ['weight'] = 20, ['type'] = 'item', ['image'] = '10kgoldchain.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '10 carat golden chain', ["created"] = nil},
|
||
|
['goldbar'] = {['name'] = 'goldbar', ['label'] = 'Gold Bar', ['weight'] = 70, ['type'] = 'item', ['image'] = 'goldbar.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Looks pretty expensive to me', ["created"] = nil},
|
||
|
|
||
|
-- Cops Tools
|
||
|
['armor'] = {['name'] = 'armor', ['label'] = 'Armor', ['weight'] = 200, ['type'] = 'item', ['image'] = 'armor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some protection won\'t hurt... right?', ["created"] = nil},
|
||
|
['heavyarmor'] = {['name'] = 'heavyarmor', ['label'] = 'Heavy Armor', ['weight'] = 300, ['type'] = 'item', ['image'] = 'armor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some protection won\'t hurt... right?', ["created"] = nil},
|
||
|
['handcuffs'] = {['name'] = 'handcuffs', ['label'] = 'Handcuffs', ['weight'] = 50, ['type'] = 'item', ['image'] = 'handcuffs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Comes in handy when people misbehave. Maybe it can be used for something else?', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['police_stormram'] = {['name'] = 'police_stormram', ['label'] = 'Stormram', ['weight'] = 18, ['type'] = 'item', ['image'] = 'police_stormram.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice tool to break into doors', ["created"] = nil},
|
||
|
['empty_evidence_bag'] = {['name'] = 'empty_evidence_bag', ['label'] = 'Empty Evidence Bag', ['weight'] = 0, ['type'] = 'item', ['image'] = 'evidence.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Used a lot to keep DNA from blood, bullet shells and more', ["created"] = nil},
|
||
|
['filled_evidence_bag'] = {['name'] = 'filled_evidence_bag', ['label'] = 'Evidence Bag', ['weight'] = 20, ['type'] = 'item', ['image'] = 'evidence.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A filled evidence bag to see who committed the crime >:(', ["created"] = nil},
|
||
|
|
||
|
-- Firework Tools
|
||
|
['firework1'] = {['name'] = 'firework1', ['label'] = '2Brothers', ['weight'] = 10, ['type'] = 'item', ['image'] = 'firework1.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ["created"] = nil},
|
||
|
['firework2'] = {['name'] = 'firework2', ['label'] = 'Poppelers', ['weight'] = 10, ['type'] = 'item', ['image'] = 'firework2.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ["created"] = nil},
|
||
|
['firework3'] = {['name'] = 'firework3', ['label'] = 'WipeOut', ['weight'] = 10, ['type'] = 'item', ['image'] = 'firework3.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ["created"] = nil},
|
||
|
['firework4'] = {['name'] = 'firework4', ['label'] = 'Weeping Willow', ['weight'] = 10, ['type'] = 'item', ['image'] = 'firework4.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ["created"] = nil},
|
||
|
|
||
|
|
||
|
|
||
|
-- Sea Tools
|
||
|
['dendrogyra_coral'] = {['name'] = 'dendrogyra_coral', ['label'] = 'Dendrogyra', ['weight'] = 10, ['type'] = 'item', ['image'] = 'dendrogyra_coral.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its also known as pillar coral', ["created"] = nil},
|
||
|
['antipatharia_coral'] = {['name'] = 'antipatharia_coral', ['label'] = 'Antipatharia', ['weight'] = 10, ['type'] = 'item', ['image'] = 'antipatharia_coral.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its also known as black corals or thorn corals', ["created"] = nil},
|
||
|
['diving_gear'] = {['name'] = 'diving_gear', ['label'] = 'Diving Gear', ['weight'] = 300, ['type'] = 'item', ['image'] = 'diving_gear.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An oxygen tank and a rebreather', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['diving_fill'] = {['name'] = 'diving_fill', ['label'] = 'Diving Tube', ['weight'] = 30, ['type'] = 'item', ['image'] = 'diving_tube.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['discription'] = 'An oxygen tube and a rebreather', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Other Tools
|
||
|
['casinochips'] = {['name'] = 'casinochips', ['label'] = 'Casino Chips', ['weight'] = 0, ['type'] = 'item', ['image'] = 'casinochips.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Chips For Casino Gambling', ["created"] = nil},
|
||
|
['stickynote'] = {['name'] = 'stickynote', ['label'] = 'Sticky note', ['weight'] = 0, ['type'] = 'item', ['image'] = 'stickynote.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Sometimes handy to remember something :)', ["created"] = nil},
|
||
|
['moneybag'] = {['name'] = 'moneybag', ['label'] = 'Money Bag', ['weight'] = 0, ['type'] = 'item', ['image'] = 'moneybag.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bag with cash', ["created"] = nil},
|
||
|
['parachute'] = {['name'] = 'parachute', ['label'] = 'Parachute', ['weight'] = 300, ['type'] = 'item', ['image'] = 'parachute.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The sky is the limit! Woohoo!', ["created"] = nil},
|
||
|
['binoculars'] = {['name'] = 'binoculars', ['label'] = 'Binoculars', ['weight'] = 60, ['type'] = 'item', ['image'] = 'binoculars.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sneaky Breaky...', ["created"] = nil},
|
||
|
['lighter'] = {['name'] = 'lighter', ['label'] = 'Lighter', ['weight'] = 0, ['type'] = 'item', ['image'] = 'lighter.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'On new years eve a nice fire to stand next to', ["created"] = nil},
|
||
|
['certificate'] = {['name'] = 'certificate', ['label'] = 'Certificate', ['weight'] = 0, ['type'] = 'item', ['image'] = 'certificate.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Certificate that proves you own certain stuff', ["created"] = nil},
|
||
|
['markedbills'] = {['name'] = 'markedbills', ['label'] = 'Marked Money', ['weight'] = 10, ['type'] = 'item', ['image'] = 'markedbills.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Money?', ["created"] = nil},
|
||
|
-- ['labkey'] = {['name'] = 'labkey', ['label'] = 'Key', ['weight'] = 50, ['type'] = 'item', ['image'] = 'labkey.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Key for a lock...?', ["created"] = nil},
|
||
|
['printerdocument'] = {['name'] = 'printerdocument', ['label'] = 'Document', ['weight'] = 50, ['type'] = 'item', ['image'] = 'printerdocument.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice document', ["created"] = nil},
|
||
|
---
|
||
|
["bluechip"] = {["name"] = "bluechip", ["label"] = "Blue Key", ["weight"] = 0, ["type"] = "item", ["image"] = "bluechip.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Wants To Hack! You may need me.", ["created"] = nil},
|
||
|
["greenchip"] = {["name"] = "greenchip", ["label"] = "Green Key", ["weight"] = 0, ["type"] = "item", ["image"] = "greenchip.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Wants To Hack! You may need me.", ["created"] = nil},
|
||
|
["redchip"] = {["name"] = "redchip", ["label"] = "Red Key", ["weight"] = 0, ["type"] = "item", ["image"] = "redchip.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Wants To Hack! You may need me.", ["created"] = nil},
|
||
|
|
||
|
---mistry box
|
||
|
["mystery_smallbox"] = {["name"] = "mystery_smallbox", ["label"] = "Small Mystery Box", ["weight"] = 100, ["type"] = "item", ["image"] = "mystery_smallBox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "small mistry box", ["created"] = nil},
|
||
|
["mystery_mediumbox"] = {["name"] = "mystery_mediumbox", ["label"] = "Medium Mystery Box", ["weight"] = 100, ["type"] = "item", ["image"] = "mystery_mediumBox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "mid level mistry box", ["created"] = nil},
|
||
|
["mystery_bigbox"] = {["name"] = "mystery_bigbox", ["label"] = "Big Mystery Box", ["weight"] = 100, ["type"] = "item", ["image"] = "mystery_bigBox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "large mistry box maybe", ["created"] = nil},
|
||
|
["mystery_expensivebox"] = {["name"] = "mystery_expensivebox", ["label"] = "Super Mystery Box", ["weight"] = 100, ["type"] = "item", ["image"] = "mystery_expensiveBox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "mistry is always mistry", ["created"] = nil},
|
||
|
|
||
|
----rental
|
||
|
['renting_contract'] = {['name'] = 'renting_contract', ['label'] = 'Renting Contract', ['weight'] = 50, ['type'] = 'item', ['image'] = 'renting_contract.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'rental recipts', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--hcrp-farming 2.0
|
||
|
["farm_fertilizante"] = {["name"] = "farm_fertilizante", ["label"] = "Agricultural Fertilizer", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_fertilizante.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_tomate"] = {["name"] = "farm_tomate", ["label"] = "Tomato Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_tomate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_trigo"] = {["name"] = "farm_trigo", ["label"] = "Wheat Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_trigo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_batatas"] = {["name"] = "farm_batatas", ["label"] = "Potato Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_batatas.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_pepino"] = {["name"] = "farm_pepino", ["label"] = "Cucumber Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_pepino.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cebola"] = {["name"] = "farm_cebola", ["label"] = "Onion Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cebola.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cove"] = {["name"] = "farm_cove", ["label"] = "Cabbage Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cove.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_alface"] = {["name"] = "farm_alface", ["label"] = "Lettuce Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_alface.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cenora"] = {["name"] = "farm_cenora", ["label"] = "Carrot Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cenora.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_beterraba"] = {["name"] = "farm_beterraba", ["label"] = "Beet Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_beterraba.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_nabo"] = {["name"] = "farm_nabo", ["label"] = "Turnip Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_nabo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cogumelos"] = {["name"] = "farm_cogumelos", ["label"] = "Mushrooms Seeds", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cogumelos.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_regador"] = {["name"] = "farm_regador", ["label"] = "Empty Watering Can", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_regador.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_regador_cheio"] = {["name"] = "farm_regador_cheio", ["label"] = "Full Watering Can", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_regador.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_pa"] = {["name"] = "farm_pa", ["label"] = "Shovel", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_pa.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_trigo_colhido"] = {["name"] = "farm_trigo_colhido", ["label"] = "Wheat", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_trigo_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_tomate_colhido"] = {["name"] = "farm_tomate_colhido", ["label"] = "Tomato", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_tomate_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_nabo_colhido"] = {["name"] = "farm_nabo_colhido", ["label"] = "Turnip", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_nabo_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_batatas_colhido"] = {["name"] = "farm_batatas_colhido", ["label"] = "Potato", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_batatas_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_pepino_colhido"] = {["name"] = "farm_pepino_colhido", ["label"] = "Cucumber", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_pepino_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cebola_colhido"] = {["name"] = "farm_cebola_colhido", ["label"] = "Onion", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cebola_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cove_colhido"] = {["name"] = "farm_cove_colhido", ["label"] = "Cabbage", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cove_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_alface_colhido"] = {["name"] = "farm_alface_colhido", ["label"] = "Lettuce", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_alface_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cenora_colhido"] = {["name"] = "farm_cenora_colhido", ["label"] = "Carrot", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cenora_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_cogumelos_colhido"] = {["name"] = "farm_cogumelos_colhido", ["label"] = "Mushrooms", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_cogumelos_colhido.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_leite"] = {["name"] = "farm_leite", ["label"] = "Fresh Milk", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_leite.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_maca"] = {["name"] = "farm_maca", ["label"] = "Apple", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_maca.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_pessego"] = {["name"] = "farm_pessego", ["label"] = "Peach", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_pessego.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_pera"] = {["name"] = "farm_pera", ["label"] = "Pear", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_pera.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_manga"] = {["name"] = "farm_manga", ["label"] = "Mango", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_manga.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_laranja"] = {["name"] = "farm_laranja", ["label"] = "Orange", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_laranja.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_limao"] = {["name"] = "farm_limao", ["label"] = "Limon", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_limao.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_tesoura"] = {["name"] = "farm_tesoura", ["label"] = "Farm Scisors", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_tesoura.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_sumo_tomate"] = {["name"] = "farm_sumo_tomate", ["label"] = "Tomato Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_sumo_tomate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_farinha"] = {["name"] = "farm_farinha", ["label"] = "Wheat Flour", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_farinha.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_sumo_laranja"] = {["name"] = "farm_sumo_laranja", ["label"] = "Orange Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_sumo_laranja.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_sumo_pessego"] = {["name"] = "farm_sumo_pessego", ["label"] = "Peach Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_sumo_pessego.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_sumo_maca"] = {["name"] = "farm_sumo_maca", ["label"] = "Apple Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_sumo_maca.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_sumo_manga"] = {["name"] = "farm_sumo_manga", ["label"] = "Mango Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_sumo_manga.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_sumo_pera"] = {["name"] = "farm_sumo_pera", ["label"] = "Pear Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_sumo_pera.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["farm_sumo_limao"] = {["name"] = "farm_sumo_limao", ["label"] = "Lemon Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "farm_sumo_limao.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["digiscanner"] = {["name"] = "digiscanner", ["label"] = "Digiscanner", ["weight"] = 200, ["type"] = "item", ["image"] = "digiscanner.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Used to scan for things..", ["created"] = nil},
|
||
|
["shovel"] = {["name"] = "shovel", ["label"] = "Shovel", ["weight"] = 300, ["type"] = "item", ["image"] = "shovel.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A handy shovel.", ["created"] = nil},
|
||
|
|
||
|
|
||
|
-- -----additional drinks item
|
||
|
["sprunk"] = {["name"] = "sprunk", ["label"] = "Sprunk", ["weight"] = 100, ["type"] = "item", ["image"] = "sprunk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sprunklight"] = {["name"] = "sprunklight", ["label"] = "Sprunk Light", ["weight"] = 100, ["type"] = "item", ["image"] = "sprunklight.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ecola"] = {["name"] = "ecola", ["label"] = "eCola", ["weight"] = 100, ["type"] = "item", ["image"] = "ecola.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ecolalight"] = {["name"] = "ecolalight", ["label"] = "eCola Light", ["weight"] = 100, ["type"] = "item", ["image"] = "ecolalight.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['vehiclekey'] = {['name'] = 'vehiclekey', ['label'] = 'Vehicle key', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vehiclekeys.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "", ["created"] = nil},
|
||
|
|
||
|
['driving_test_permit'] = {['name'] = 'driving_test_permit', ['label'] = 'Driving Test Permit', ['weight'] = 0, ['type'] = 'item', ['image'] = 'dmv.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Permite for Driving Test', ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["toolbox"] = {["name"] = "toolbox", ["label"] = "Toolbox", ["weight"] = 0, ["type"] = "item", ["image"] = "toolbox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Needed for Performance part removal", ["created"] = nil},
|
||
|
["ducttape"] = {["name"] = "ducttape", ["label"] = "Duct Tape", ["weight"] = 0, ["type"] = "item", ["image"] = "bodyrepair.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Good for quick fixes", ["created"] = nil},
|
||
|
["mechboard"] = {["name"] = "mechboard", ["label"] = "Mechanic Sheet", ["weight"] = 0, ["type"] = "item", ["image"] = "mechboard.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil},
|
||
|
|
||
|
-- ITEMS
|
||
|
['fishingrod1'] = {['name'] = 'fishingrod1', ['label'] = 'Fishing Rod (1Lv.)', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fishingrod1.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Chips For Casino Gambling'},
|
||
|
['fishingrod2'] = {['name'] = 'fishingrod2', ['label'] = 'Fishing Rod (2Lv.)', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fishingrod2.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Sometimes handy to remember something :)'},
|
||
|
['fishingrod3'] = {['name'] = 'fishingrod3', ['label'] = 'Fishing Rod (3Lv.)', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fishingrod3.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bag with cash'},
|
||
|
['fishingrod4'] = {['name'] = 'fishingrod4', ['label'] = 'Fishing Rod (4Lv.)', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fishingrod4.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The sky is the limit! Woohoo!'},
|
||
|
['fishingrod5'] = {['name'] = 'fishingrod5', ['label'] = 'Fishing Rod (5Lv.)', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fishingrod5.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sneaky Breaky...'},
|
||
|
['anchovy'] = {['name'] = 'anchovy', ['label'] = 'Anchovy', ['weight'] = 50, ['type'] = 'item', ['image'] = 'anchovy.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'On new years eve a nice fire to stand next to'},
|
||
|
['smallbluefish'] = {['name'] = 'smallbluefish', ['label'] = 'Small Blue Fish', ['weight'] = 50, ['type'] = 'item', ['image'] = 'smallbluefish.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Certificate that proves you own certain stuff'},
|
||
|
['bluefish'] = {['name'] = 'bluefish', ['label'] = 'Blue Fish', ['weight'] = 50, ['type'] = 'item', ['image'] = 'bluefish.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Money?'},
|
||
|
['bonitosfish'] = {['name'] = 'bonitosfish', ['label'] = 'Bonitos', ['weight'] = 50, ['type'] = 'item', ['image'] = 'bonitosfish.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Key for a lock...?'},
|
||
|
['garfish'] = {['name'] = 'garfish', ['label'] = 'Garfish', ['weight'] = 50, ['type'] = 'item', ['image'] = 'garfish.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice document'},
|
||
|
['perch'] = {['name'] = 'perch', ['label'] = 'Perch', ['weight'] = 50, ['type'] = 'item', ['image'] = 'perch.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Chips For Casino Gambling'},
|
||
|
['carettacaretta'] = {['name'] = 'carettacaretta', ['label'] = 'Kaplumbağa', ['weight'] = 50, ['type'] = 'item', ['image'] = 'carettacaretta.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Sometimes handy to remember something :)'},
|
||
|
['pantfish'] = {['name'] = 'pantfish', ['label'] = 'Pant Fish', ['weight'] = 50, ['type'] = 'item', ['image'] = 'pantfish.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bag with cash'},
|
||
|
['sharkfish'] = {['name'] = 'sharkfish', ['label'] = 'Shark', ['weight'] = 50, ['type'] = 'item', ['image'] = 'sharkfish.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The sky is the limit! Woohoo!'},
|
||
|
['whitepearl'] = {['name'] = 'whitepearl', ['label'] = 'White Pearl', ['weight'] = 50, ['type'] = 'item', ['image'] = 'whitepearl.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sneaky Breaky...'},
|
||
|
['bluepearl'] = {['name'] = 'bluepearl', ['label'] = 'Blue Pearl', ['weight'] = 50, ['type'] = 'item', ['image'] = 'bluepearl.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'On new years eve a nice fire to stand next to'},
|
||
|
['redpearl'] = {['name'] = 'redpearl', ['label'] = 'Red Pearl', ['weight'] = 50, ['type'] = 'item', ['image'] = 'redpearl.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Certificate that proves you own certain stuff'},
|
||
|
['yellowpearl'] = {['name'] = 'yellowpearl', ['label'] = 'Yellow Pearl', ['weight'] = 50, ['type'] = 'item', ['image'] = 'yellowpearl.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Money?'},
|
||
|
['greenpearl'] = {['name'] = 'greenpearl', ['label'] = 'Green Pearl', ['weight'] = 50, ['type'] = 'item', ['image'] = 'greenpearl.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Key for a lock...?'},
|
||
|
['fish'] = {['name'] = 'fish', ['label'] = 'Tiny Fish', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fish.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice document'},
|
||
|
['fishbait'] = {['name'] = 'fishbait', ['label'] = 'Fish Bait', ['weight'] = 50, ['type'] = 'item', ['image'] = 'fishbait.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice document'},
|
||
|
['illegalfishbait'] = {['name'] = 'illegalfishbait', ['label'] = 'Illegal Fish Bait', ['weight'] = 50, ['type'] = 'item', ['image'] = 'illegalFishBait.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice document'},
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
-- New v9 Items
|
||
|
['rubikcube'] = {['name'] = 'rubikcube', ['label'] = 'Rubik Cube', ['weight'] = 700, ['type'] = 'item', ['image'] = 'rubikcube.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'rubikcube'},
|
||
|
|
||
|
['towremote'] = {['name'] = 'towremote', ['label'] = 'Tow Remote', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'towremote.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ["created"] = nil, ['description'] = '[useable] | [G] when in tow truck to lower and raise bed, [E] to pick the hook up and put the hook down'},
|
||
|
["reponote"] = {["name"] = "reponote", ["label"] = "Repo Note", ["weight"] = 500, ["type"] = "item", ["image"] = "reponote.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["created"] = nil, ["description"] = "[useable] | [G] when in tow truck to lower and raise bed, [E] to pick the hook up and put the hook down"},
|
||
|
|
||
|
['fitness_subscription'] = {['name'] = 'fitness_subscription', ['label'] = 'Gym membership', ['weight'] = 0, ['type'] = 'item', ['image'] = 'stickynote.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Gym Notebook'},
|
||
|
['wheeltoken'] = {['name'] = 'wheeltoken', ['label'] = 'Wheel Token', ['weight'] = 100, ['type'] = 'item', ['image'] = 'token.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Token for spinning the wheel in a casino'},
|
||
|
['matticket'] = {['name'] = 'matticket', ['label'] = 'Material Voucher', ['weight'] = 100, ['type'] = 'item', ['image'] = 'matticket.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = "Turn this in at sanitation to be rewarded with some scrapped material"},
|
||
|
["kuz_divinggear"] = {["name"] = "kuz_divinggear", ["label"] = "Diving gear", ["weight"] = 3000, ["type"] = "item", ["image"] = "kuz_divinggear.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Basic diving gear"},
|
||
|
["kuz_divinggeargood"] = {["name"] = "kuz_divinggeargood", ["label"] = "Scuba gear", ["weight"] = 6000, ["type"] = "item", ["image"] = "kuz_divinggeargood.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Advanced diving gear"},
|
||
|
["kuz_silvercoin"] = {["name"] = "kuz_silvercoin", ["label"] = "Silver coin", ["weight"] = 100, ["type"] = "item", ["image"] = "kuz_silvercoin.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Silver coin"},
|
||
|
["kuz_goldcoin"] = {["name"] = "kuz_goldcoin", ["label"] = "Gold coin", ["weight"] = 150, ["type"] = "item", ["image"] = "kuz_goldcoin.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Gold coin"},
|
||
|
["kuz_pearl"] = {["name"] = "kuz_pearl", ["label"] = "Pearl", ["weight"] = 250, ["type"] = "item", ["image"] = "kuz_pearl.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Pearl"},
|
||
|
["kuz_rarecoin"] = {["name"] = "kuz_rarecoin", ["label"] = "Rare coin", ["weight"] = 250, ["type"] = "item", ["image"] = "kuz_rarecoin.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare coin"},
|
||
|
["kuz_plasmacutter"] = {["name"] = "kuz_plasmacutter", ["label"] = "Underwater Plasma cutter", ["weight"] = 2500, ["type"] = "item", ["image"] = "kuz_plasmacutter.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Underwater Plasma Cutter"},
|
||
|
["kuz_merryweather"] = {["name"] = "kuz_merryweather", ["label"] = "Merryweather parts", ["weight"] = 5000, ["type"] = "item", ["image"] = "kuz_merryweather.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Merryweather parts"},
|
||
|
["kuz_jewelry"] = {["name"] = "kuz_jewelry", ["label"] = "Jewelry", ["weight"] = 1000, ["type"] = "item", ["image"] = "kuz_jewelry.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Jewelry"},
|
||
|
["kuz_watch"] = {["name"] = "kuz_watch", ["label"] = "Expensive watch", ["weight"] = 500, ["type"] = "item", ["image"] = "kuz_watch.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Expensive watch"},
|
||
|
|
||
|
-- m-Tequila
|
||
|
["tq_berry_hydrating"] = {["name"] = "tq_berry_hydrating", ["label"] = "Berry Hydrating", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_berry_hydrating.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_cake"] = {["name"] = "tq_cake", ["label"] = "Cake", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_cake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_chocolate_cake"] = {["name"] = "tq_chocolate_cake", ["label"] = "Chocolate Cake", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_chocolate_cake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_cocktail"] = {["name"] = "tq_cocktail", ["label"] = "Cocktail", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_cocktail.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_coconut_drink"] = {["name"] = "tq_coconut_drink", ["label"] = "Coconut Drink", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_coconut_drink.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_coffee"] = {["name"] = "tq_coffee", ["label"] = "Coffee", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_coffee.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_coffee_heart"] = {["name"] = "tq_coffee_heart", ["label"] = "Coffee Heart", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_coffee_heart.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_green_dream"] = {["name"] = "tq_green_dream", ["label"] = "Green Dream", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_green_dream.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_island_breeze"] = {["name"] = "tq_island_breeze", ["label"] = "Island Breeze", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_island_breeze.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_island_fantasy"] = {["name"] = "tq_island_fantasy", ["label"] = "Island Fantasy", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_island_fantasy.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_just_peachy"] = {["name"] = "tq_just_peachy", ["label"] = "Just Peachy", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_just_peachy.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_kamikaze"] = {["name"] = "tq_kamikaze", ["label"] = "Kamikaze", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_kamikaze.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_redhot_daquiri"] = {["name"] = "tq_redhot_daquiri", ["label"] = "Redhot Daquiri", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_redhot_daquiri.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_watermelon_dream"] = {["name"] = "tq_watermelon_dream", ["label"] = "Watermelon Dream", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_watermelon_dream.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_tequila"] = {["name"] = "tq_tequila", ["label"] = "Tequila", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_tequila.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_daquiri"] = {["name"] = "tq_daquiri", ["label"] = "Daquiri", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_daquiri.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_water"] = {["name"] = "tq_water", ["label"] = "Water", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_water.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_caramel"] = {["name"] = "tq_caramel", ["label"] = "Caramel", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_caramel.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_chocolate"] = {["name"] = "tq_chocolate", ["label"] = "Chocolate", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_cheese"] = {["name"] = "tq_cheese", ["label"] = "Cheese", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_cheese.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_milk"] = {["name"] = "tq_milk", ["label"] = "Milk", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_milk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
-- Juices
|
||
|
["tq_orange_juice"] = {["name"] = "tq_orange_juice", ["label"] = "Orange Juice", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_orange_juice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_kiwi_juice"] = {["name"] = "tq_kiwi_juice", ["label"] = "Kiwi Juice", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_kiwi_juice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_strawberry_juice"] = {["name"] = "tq_strawberry_juice", ["label"] = "Strawberry Juice", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_strawberry_juice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_banana_juice"] = {["name"] = "tq_banana_juice", ["label"] = "Banana Juice", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_banana_juice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_ban_straw_juice"] = {["name"] = "tq_ban_straw_juice", ["label"] = "Banana & Strawberry Juice", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_ban_straw_juice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
-- Fruits
|
||
|
["tq_kiwi"] = {["name"] = "tq_kiwi", ["label"] = "Kiwi", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_kiwi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_orange"] = {["name"] = "tq_orange", ["label"] = "Orange", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_orange.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_strawberry"] = {["name"] = "tq_strawberry", ["label"] = "Strawberry", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_strawberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_sugar"] = {["name"] = "tq_sugar", ["label"] = "Sugar", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_sugar.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_watermelon"] = {["name"] = "tq_watermelon", ["label"] = "Watermelon", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_watermelon.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_banana"] = {["name"] = "tq_banana", ["label"] = "Banana", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_banana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_coconut"] = {["name"] = "tq_coconut", ["label"] = "Coconut", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_coconut.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_banana_nut"] = {["name"] = "tq_banana_nut", ["label"] = "banana nut", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_banana_nut.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_chocolatecup"] = {["name"] = "tq_chocolatecup", ["label"] = "chocolatecup", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_chocolatecup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tq_strawberrycup"] = {["name"] = "tq_strawberrycup", ["label"] = "Cocotq strawberrycupnut", ["weight"] = 50, ["type"] = "item", ["image"] = "tq_strawberrycup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
|
||
|
|
||
|
-- bahama mamas
|
||
|
['beach-cocktail'] = {['name'] = 'beach-cocktail', ['label'] = 'Sax on the Beach', ['weight'] = 100, ['type'] = 'item', ['image'] = 'beach-cocktail.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'I Think Sax is Spelt Wrong'},
|
||
|
['bloody-mary'] = {['name'] = 'bloody-mary', ['label'] = 'Bloody Mary', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bloody-mary.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Whos Mary and Why is She Bloody?'},
|
||
|
['cherry-bomb'] = {['name'] = 'cherry-bomb', ['label'] = 'Cherry Bomb', ['weight'] = 100, ['type'] = 'item', ['image'] = 'cherry-bomb.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'I Love a Good Fruity Drink'},
|
||
|
['cherrydrop-shot'] = {['name'] = 'cherrydrop-shot', ['label'] = 'Cherry Drop', ['weight'] = 100, ['type'] = 'item', ['image'] = 'cherrydrop-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fruity Shot'},
|
||
|
['firedrop-shot'] = {['name'] = 'firedrop-shot', ['label'] = 'Fire Drop', ['weight'] = 100, ['type'] = 'item', ['image'] = 'firedrop-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spiiiicy!!!!'},
|
||
|
['lemonchello-shot'] = {['name'] = 'lemonchello-shot', ['label'] = 'Lemonchello', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lemonchello-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'This is a Unique Taste'},
|
||
|
['liquidflame-shot'] = {['name'] = 'liquidflame-shot', ['label'] = 'Liquid Flame', ['weight'] = 100, ['type'] = 'item', ['image'] = 'liquidflame-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Super Hot'},
|
||
|
['minihulk-shot'] = {['name'] = 'minihulk-shot', ['label'] = 'Mini Hulk', ['weight'] = 100, ['type'] = 'item', ['image'] = 'minihulk-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Thats your secret.. Youre Always Drunk'},
|
||
|
['orange-blast'] = {['name'] = 'orange-blast', ['label'] = 'Orange Blast', ['weight'] = 100, ['type'] = 'item', ['image'] = 'orange-blast.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tangy'},
|
||
|
['orange-vodka'] = {['name'] = 'orange-vodka', ['label'] = 'Orange Vodka', ['weight'] = 100, ['type'] = 'item', ['image'] = 'orange-vodka.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Hit With The Ladies'},
|
||
|
['pina-colada'] = {['name'] = 'pina-colada', ['label'] = 'Pina Colada', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pina-colada.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'In The Pouring Rain?'},
|
||
|
['pineapple-gin'] = {['name'] = 'pineapple-gin', ['label'] = 'Pineapple Gin', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pineapple-gin.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fruity Concoctions'},
|
||
|
['polarbear'] = {['name'] = 'polarbear', ['label'] = 'Polar Bear', ['weight'] = 100, ['type'] = 'item', ['image'] = 'polarbear.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Icy Cold'},
|
||
|
['rumcoke'] = {['name'] = 'rumcoke', ['label'] = 'Rum n Coke', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rumcoke.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Kinda Pirates life for me'},
|
||
|
['sourblast-shot'] = {['name'] = 'sourblast-shot', ['label'] = 'Sour Blast', ['weight'] = 100, ['type'] = 'item', ['image'] = 'sourblast-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Too Sour Maybe?..'},
|
||
|
['tequila-shot'] = {['name'] = 'tequila-shot', ['label'] = 'Tequila', ['weight'] = 100, ['type'] = 'item', ['image'] = 'tequila-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Classic'},
|
||
|
['vampireskiss-shot'] = {['name'] = 'vampireskiss-shot', ['label'] = 'Vampires Kiss', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vampireskiss-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Bloody Encounter'},
|
||
|
['vampireslove-shot'] = {['name'] = 'vampireslove-shot', ['label'] = 'Vampires Love', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vampireslove-shot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Team E vs Team J'},
|
||
|
['pisswasser-crate'] = {['name'] = 'pisswasser-crate', ['label'] = 'Pisswasser Crate', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'pisswasser-crate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Contains Beer'},
|
||
|
['pisswasser'] = {['name'] = 'pisswasser', ['label'] = 'Pisswasser', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pisswasser.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its Pisswasser'},
|
||
|
['pisswasser-lite'] = {['name'] = 'pisswasser-lite', ['label'] = 'Pisswasser Lite', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pisswasser-lite.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Smooth Low Alcohol Version'},
|
||
|
['pisswasser-dark'] = {['name'] = 'pisswasser-dark', ['label'] = 'Pisswasser Dark', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pisswasser-dark.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Rich Foamy Taste'},
|
||
|
['mesa-coffee'] = {['name'] = 'mesa-coffee', ['label'] = 'Mesa Coffee', ['weight'] = 100, ['type'] = 'item', ['image'] = 'mesa-coffee.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mesanuxta Branded Coffee'},
|
||
|
['mesa-beans'] = {['name'] = 'mesa-beans', ['label'] = 'Mesa Beans', ['weight'] = 100, ['type'] = 'item', ['image'] = 'mesa-beans.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mesanuxta Branded Beans'},
|
||
|
['mesa-cup'] = {['name'] = 'mesa-cup', ['label'] = 'Mesa Cup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'mesa-cup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mesanuxta Branded Cup'},
|
||
|
['cocktail-mix'] = {['name'] = 'cocktail-mix', ['label'] = 'Cocktail Mix', ['weight'] = 100, ['type'] = 'item', ['image'] = 'cocktail-mix.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'All The Ingredients Needed to Make Cocktails'},
|
||
|
['shots-mix'] = {['name'] = 'shots-mix', ['label'] = 'Shots Mix', ['weight'] = 100, ['type'] = 'item', ['image'] = 'shots-mix.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'All The Ingredients Needed to Make Shots'},
|
||
|
['cocktail-glass'] = {['name'] = 'cocktail-glass', ['label'] = 'Cocktail Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'cocktail-glass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Shiny Cocktail Glass'},
|
||
|
['shot-glass'] = {['name'] = 'shot-glass', ['label'] = 'Shot Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'shot-glass.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Little Shot Glass'},
|
||
|
|
||
|
|
||
|
|
||
|
-- prison
|
||
|
["ass-meth"] = {["name"] = "ass-meth", ["label"] = "Ass Meth", ["weight"] = 1000, ["type"] = "item", ["image"] = "ass-meth.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A batch of some real crappy meth.."},
|
||
|
["magnet-stick"] = {["name"] = "magnet-stick", ["label"] = "Little Magnet", ["weight"] = 500, ["type"] = "item", ["image"] = "magnet-stick.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A little magnet on an extendable stick.."},
|
||
|
["charging-brick"] = {["name"] = "charging-brick", ["label"] = "Charging Brick", ["weight"] = 500, ["type"] = "item", ["image"] = "charger-brick.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A charging brick.."},
|
||
|
["charging-cable"] = {["name"] = "charging-cable", ["label"] = "Charging Cable", ["weight"] = 500, ["type"] = "item", ["image"] = "charger-cable.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "You can use this to charge your phone."},
|
||
|
["tower-keys"] = {["name"] = "tower-keys", ["label"] = "Keys on a ring", ["weight"] = 500, ["type"] = "item", ["image"] = "tower-keys.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Some of these are bent beyond using"},
|
||
|
["infirmary-key"] = {["name"] = "infirmary-key", ["label"] = "Keycard", ["weight"] = 500, ["type"] = "item", ["image"] = "infirmary-key.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A keycard that gets you in to a laboratory?"},
|
||
|
['prison-ephedrine'] = {['name'] = 'prison-ephedrine', ['label'] = 'Ephedrine', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'ephedrine.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Prescription medicine used to treat the symptoms of low blood pressure'},
|
||
|
["sudafed"] = {["name"] = "sudafed", ["label"] = "Sudafed", ["weight"] = 500, ["type"] = "item", ["image"] = "sudafed.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Cold and congestive medicine"},
|
||
|
["nailpolish-remover"] = {["name"] = "nailpolish-remover", ["label"] = "Nail Polish Remover", ["weight"] = 500, ["type"] = "item", ["image"] = "nailpolish-remover.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "For cleaning your nails. Contains acetone."},
|
||
|
["prison-lighter"] = {["name"] = "prison-lighter", ["label"] = "Lighter", ["weight"] = 500, ["type"] = "item", ["image"] = "prison-lighter.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Produces a solid, constant flame."},
|
||
|
["prison-baggy"] = {["name"] = "prison-baggy", ["label"] = "Plastic Bag", ["weight"] = 500, ["type"] = "item", ["image"] = "prison-baggy.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Empty bag to put something is.."},
|
||
|
["prison-foodprep"] = {["name"] = "prison-foodprep", ["label"] = "Prepared Food", ["weight"] = 0, ["type"] = "item", ["image"] = "prison-foodprep.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Medicore food ready for mediocre citiznes.."},
|
||
|
["prison-foodsupplies"] = {["name"] = "prison-foodsupplies", ["label"] = "Ingredients", ["weight"] = 0, ["type"] = "item", ["image"] = "prison-foodsupplies.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Random food ingredients."},
|
||
|
['deadphone'] = {['name'] = 'deadphone', ['label'] = 'Dead Smartphone', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'deadphone.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice enough phone, looks like the battery is dead..'},
|
||
|
['chargedphone'] = {['name'] = 'chargedphone', ['label'] = 'Charged Smartphone', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'chargedphone.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice enough phone. This used to belong to a guard?'},
|
||
|
["care-package"] = {["name"] = "care-package", ["label"] = "Care Package Flare", ["weight"] = 5000, ["type"] = "item", ["image"] = "weapon_flare.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A prison care package"},
|
||
|
-- houserobbery
|
||
|
["houselaptop"] = {["name"] = "houselaptop", ["label"] = "House Hacking Laptop", ["weight"] = 2500, ["type"] = "item", ["image"] = "houselaptop.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["mansionlaptop"] = {["name"] = "mansionlaptop", ["label"] = "Mansion Hacking Laptop", ["weight"] = 2500, ["type"] = "item", ["image"] = "mansionlaptop.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
-- moneywash
|
||
|
["bandsofnotes"] = {["name"] = "bandsofnotes", ["label"] = "Bands Of Notes", ["weight"] = 1, ["type"] = "item", ["image"] = "cashroll.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Bands of notes belonging to a 24/7 supermarket"},
|
||
|
["stacksofcash"] = {["name"] = "stacksofcash", ["label"] = "Stacks Of Cash", ["weight"] = 1, ["type"] = "item", ["image"] = "cashstack.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Stacks of cash belonging to a bank"},
|
||
|
["moneyorder"] = {["name"] = "moneyorder", ["label"] = "Money Order", ["weight"] = 0, ["type"] = "item", ["image"] = "moneyorder.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A money order. Turn this in to get paid. "},
|
||
|
|
||
|
-- bandage
|
||
|
['kittybandage'] = {['name'] = 'kittybandage', ['label'] = 'Hello Kitty Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'kittybandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'These will help you feel Purrrrrfect'},
|
||
|
['swbandage'] = {['name'] = 'swbandage', ['label'] = 'Star Wars Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'swbandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'No bacta tank around..these will do'},
|
||
|
['shrekbandage'] = {['name'] = 'shrekbandage', ['label'] = 'Shrek Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'shrekbandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Next best thing after a mud bath!'},
|
||
|
['carsbandage'] = {['name'] = 'carsbandage', ['label'] = 'Cars Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'carsbandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Healing you FAST. SPEED!'},
|
||
|
['mousebandage'] = {['name'] = 'mousebandage', ['label'] = 'Disney Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'mousebandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magical healing!'},
|
||
|
['avengersbandage'] = {['name'] = 'avengersbandage', ['label'] = 'Avengers Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'avengersbandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'You have been saved by the Avengers'},
|
||
|
['baconbandage'] = {['name'] = 'baconbandage', ['label'] = 'Bacon Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'baconbandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dont eat these'},
|
||
|
['pokemonbandage'] = {['name'] = 'pokemonbandage', ['label'] = 'Pokemon Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'pokemonbandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'I wanna feel the very best..'},
|
||
|
['spongebobbandage'] = {['name'] = 'spongebobbandage', ['label'] = 'Spongebob Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'spongebobbandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'This can heal your Bikini Bottom'},
|
||
|
['toystorybandage'] = {['name'] = 'toystorybandage', ['label'] = 'Toy Story Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'toystory-bandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'You have been saved by the Avengers'},
|
||
|
['scoobydobandage'] = {['name'] = 'scoobydobandage', ['label'] = 'Scooby-Do Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'scoobydobandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'We got some help for you now!'},
|
||
|
['packofbandaids'] = {['name'] = 'packofbandaids', ['label'] = 'Pack of Bandaids', ['weight'] = 0, ['type'] = 'item', ['image'] = 'packofbandaids.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack of 5 bandaids'},
|
||
|
|
||
|
|
||
|
-- drugs
|
||
|
["coke_box"] = {["name"] = "coke_box", ["label"] = "Box with Coke", ["weight"] = 2000, ["type"] = "item", ["image"] = "coke_box.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Be careful not to spill it on the ground"},
|
||
|
["trowel"] = {["name"] = "trowel", ["label"] = "Trowel", ["weight"] = 250, ["type"] = "item", ["image"] = "trowel.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Perfect for your garden or for Coca plant"},
|
||
|
["coke_leaf"] = {["name"] = "coke_leaf", ["label"] = "Coca leaves", ["weight"] = 15, ["type"] = "item", ["image"] = "coca_leaf.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Leaf from amazing plant"},
|
||
|
["coke_access"] = {["name"] = "coke_access", ["label"] = "Access card", ["weight"] = 50, ["type"] = "item", ["image"] = "coke_access.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Access Card for Coke Lab"},
|
||
|
["coke_raw"] = {["name"] = "coke_raw", ["label"] = "Raw Coke", ["weight"] = 50, ["type"] = "item", ["image"] = "coke_raw.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Coke with some dirty particles"},
|
||
|
["coke_pure"] = {["name"] = "coke_pure", ["label"] = "Pure Coke", ["weight"] = 70, ["type"] = "item", ["image"] = "coke_pure.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Coke without any dirty particles"},
|
||
|
["coke_figure"] = {["name"] = "coke_figure", ["label"] = "Action Figure", ["weight"] = 150, ["type"] = "item", ["image"] = "coke_figure.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Action Figure of the cartoon superhero Impotent Rage"},
|
||
|
["coke_figureempty"] = {["name"] = "coke_figureempty", ["label"] = "Action Figure", ["weight"] = 150, ["type"] = "item", ["image"] = "coke_figureempty.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Action Figure of the cartoon superhero Impotent Rage"},
|
||
|
["coke_figurebroken"] = {["name"] = "coke_figurebroken", ["label"] = "Pieces of Action Figure", ["weight"] = 100, ["type"] = "item", ["image"] = "coke_figurebroken.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "You can throw this away or try to repair with glue"},
|
||
|
["meth_amoniak"] = {["name"] = "meth_amoniak", ["label"] = "Ammonia", ["weight"] = 1000, ["type"] = "item", ["image"] = "meth_amoniak.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Warning! Dangerous Chemicals!"},
|
||
|
["meth_pipe"] = {["name"] = "meth_pipe", ["label"] = "Meth Pipe", ["weight"] = 880, ["type"] = "item", ["image"] = "meth_pipe.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Enjoy your new crystal clear stuff!"},
|
||
|
["crack_pipe"] = {["name"] = "crack_pipe", ["label"] = "Crack Pipe", ["weight"] = 550, ["type"] = "item", ["image"] = "crack_pipe.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Enjoy your Crack!"},
|
||
|
["syringe"] = {["name"] = "syringe", ["label"] = "Syringe", ["weight"] = 300, ["type"] = "item", ["image"] = "syringe.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Enjoy your new crystal clear stuff!"},
|
||
|
["meth_syringe"] = {["name"] = "meth_syringe", ["label"] = "Syringe", ["weight"] = 320, ["type"] = "item", ["image"] = "meth_syringe.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Enjoy your new crystal clear stuff!"},
|
||
|
["heroin_syringe"] = {["name"] = "heroin_syringe", ["label"] = "Syringe", ["weight"] = 320, ["type"] = "item", ["image"] = "heroin_syringe.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Enjoy your new crystal clear stuff!"},
|
||
|
["meth_sacid"] = {["name"] = "meth_sacid", ["label"] = "Sodium Benzoate Canister", ["weight"] = 5000, ["type"] = "item", ["image"] = "meth_sacid.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Warning! Dangerous Chemicals!"},
|
||
|
["meth_emptysacid"] = {["name"] = "meth_emptysacid", ["label"] = "Empty Canister", ["weight"] = 2000, ["type"] = "item", ["image"] = "meth_emptysacid.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Material: Plastic, Good for Sodium Benzoate"},
|
||
|
["meth_access"] = {["name"] = "meth_access", ["label"] = "Access Card", ["weight"] = 50, ["type"] = "item", ["image"] = "meth_access.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Access Card for Meth Lab"},
|
||
|
["meth_glass"] = {["name"] = "meth_glass", ["label"] = "Tray with meth", ["weight"] = 1000, ["type"] = "item", ["image"] = "meth_glass.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Needs to be smashed with hammer"},
|
||
|
["meth_sharp"] = {["name"] = "meth_sharp", ["label"] = "Tray with smashed meth", ["weight"] = 1000, ["type"] = "item", ["image"] = "meth_sharp.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Can be packed"},
|
||
|
["meth_bag"] = {["name"] = "meth_bag", ["label"] = "Meth Bag", ["weight"] = 1000, ["type"] = "item", ["image"] = "meth_bag.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Plastic bag with magic stuff!"},
|
||
|
["weed_package"] = {["name"] = "weed_package", ["label"] = "Weed Bag", ["weight"] = 500, ["type"] = "item", ["image"] = "weed_package.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Plastic bag with magic stuff!"},
|
||
|
["weed_access"] = {["name"] = "weed_access", ["label"] = "Access Card", ["weight"] = 50, ["type"] = "item", ["image"] = "weed_access.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Access Card for Weed Lab"},
|
||
|
["weed_bud"] = {["name"] = "weed_bud", ["label"] = "Weed Bud", ["weight"] = 40, ["type"] = "item", ["image"] = "weed_bud.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Needs to be clean at the table"},
|
||
|
["weed_blunt"] = {["name"] = "weed_blunt", ["label"] = "Blunt", ["weight"] = 90, ["type"] = "item", ["image"] = "weed_blunt.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Enjoy your weed!"},
|
||
|
["weed_wrap"] = {["name"] = "weed_wrap", ["label"] = "Blunt Wraps", ["weight"] = 75, ["type"] = "item", ["image"] = "weed_wrap.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Get Weed Bag and roll blunt!"},
|
||
|
["weed_papers"] = {["name"] = "weed_papers", ["label"] = "Weed Papers", ["weight"] = 15, ["type"] = "item", ["image"] = "weed_papers.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Get Weed Bag and roll joint!"},
|
||
|
["weed_joint"] = {["name"] = "weed_joint", ["label"] = "Joint", ["weight"] = 50, ["type"] = "item", ["image"] = "weed_joint.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Enjoy your weed!"},
|
||
|
["weed_budclean"] = {["name"] = "weed_budclean", ["label"] = "Weed Bud", ["weight"] = 35, ["type"] = "item", ["image"] = "weed_budclean.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "You can pack this at the table"},
|
||
|
["plastic_bag"] = {["name"] = "plastic_bag", ["label"] = "Plastic Bag", ["weight"] = 8, ["type"] = "item", ["image"] = "plastic_bag.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "You can pack a lot of stuff here!"},
|
||
|
["scissors"] = {["name"] = "scissors", ["label"] = "Scissors", ["weight"] = 40, ["type"] = "item", ["image"] = "scissors.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "To help you with collecting"},
|
||
|
["ecstasy1"] = {["name"] = "ecstasy1", ["label"] = "Ectasy", ["weight"] = 10, ["type"] = "item", ["image"] = "ecstasy1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["ecstasy2"] = {["name"] = "ecstasy2", ["label"] = "Ectasy", ["weight"] = 10, ["type"] = "item", ["image"] = "ecstasy2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["ecstasy3"] = {["name"] = "ecstasy3", ["label"] = "Ectasy", ["weight"] = 10, ["type"] = "item", ["image"] = "ecstasy3.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["ecstasy4"] = {["name"] = "ecstasy4", ["label"] = "Ectasy", ["weight"] = 10, ["type"] = "item", ["image"] = "ecstasy4.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["ecstasy5"] = {["name"] = "ecstasy5", ["label"] = "Ectasy", ["weight"] = 10, ["type"] = "item", ["image"] = "ecstasy5.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["lsd1"] = {["name"] = "lsd1", ["label"] = "LSD", ["weight"] = 10, ["type"] = "item", ["image"] = "lsd1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["lsd2"] = {["name"] = "lsd2", ["label"] = "LSD", ["weight"] = 10, ["type"] = "item", ["image"] = "lsd2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["lsd3"] = {["name"] = "lsd3", ["label"] = "LSD", ["weight"] = 10, ["type"] = "item", ["image"] = "lsd3.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["lsd4"] = {["name"] = "lsd4", ["label"] = "LSD", ["weight"] = 10, ["type"] = "item", ["image"] = "lsd4.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["lsd5"] = {["name"] = "lsd5", ["label"] = "LSD", ["weight"] = 10, ["type"] = "item", ["image"] = "lsd5.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["magicmushroom"] = {["name"] = "magicmushroom", ["label"] = "Magic Mushroom", ["weight"] = 30, ["type"] = "item", ["image"] = "magicmushroom.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["peyote"] = {["name"] = "peyote", ["label"] = "Peyote", ["weight"] = 30, ["type"] = "item", ["image"] = "peyote.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["xanaxpack"] = {["name"] = "xanaxpack", ["label"] = "Xanax Pack", ["weight"] = 130, ["type"] = "item", ["image"] = "xanaxpack.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["xanaxplate"] = {["name"] = "xanaxplate", ["label"] = "Xanax Plate", ["weight"] = 30, ["type"] = "item", ["image"] = "xanaxplate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["xanaxpill"] = {["name"] = "xanaxpill", ["label"] = "Xanax Pill", ["weight"] = 2, ["type"] = "item", ["image"] = "xanaxpill.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["glue"] = {["name"] = "glue", ["label"] = "Glue", ["weight"] = 30, ["type"] = "item", ["image"] = "glue.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Good for repairing things!"},
|
||
|
["hammer"] = {["name"] = "hammer", ["label"] = "Hammer", ["weight"] = 500, ["type"] = "item", ["image"] = "hammer.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Good for smashing things!"},
|
||
|
["poppyplant"] = {["name"] = "poppyplant", ["label"] = "Poppy Plant", ["weight"] = 30, ["type"] = "item", ["image"] = "poppyplant.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Very nice plant!"},
|
||
|
["heroin"] = {["name"] = "heroin", ["label"] = "Heroin", ["weight"] = 30, ["type"] = "item", ["image"] = "heroin.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["crack"] = {["name"] = "crack", ["label"] = "Crack", ["weight"] = 30, ["type"] = "item", ["image"] = "crack.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Explore a new universe!"},
|
||
|
["baking_soda"] = {["name"] = "baking_soda", ["label"] = "Baking Soda", ["weight"] = 30, ["type"] = "item", ["image"] = "baking_soda.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Baking Bad!"},
|
||
|
|
||
|
|
||
|
['seedonion'] = {
|
||
|
['name'] = 'seedonion',
|
||
|
['label'] = 'Onion Seed',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'seedonion.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice seed'
|
||
|
},
|
||
|
|
||
|
['seedtea'] = {
|
||
|
['name'] = 'seedtea',
|
||
|
['label'] = 'Tea Seed',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'seedtea.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice seed'
|
||
|
},
|
||
|
|
||
|
['seedcoffee'] = {
|
||
|
['name'] = 'seedcoffee',
|
||
|
['label'] = 'Coffee Seed',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'seedcoffee.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice seed'
|
||
|
},
|
||
|
|
||
|
['seedpotato'] = {
|
||
|
['name'] = 'seedpotato',
|
||
|
['label'] = 'Potato Seed',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'seedpotato.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice seed'
|
||
|
},
|
||
|
|
||
|
['seedoat'] = {
|
||
|
['name'] = 'seedoat',
|
||
|
['label'] = 'Oat Seed',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'seedoat.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice seed'
|
||
|
},
|
||
|
|
||
|
['seedlettuce'] = {
|
||
|
['name'] = 'seedlettuce',
|
||
|
['label'] = 'Lettuce Seed',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'seedlettuce.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice seed'
|
||
|
},
|
||
|
|
||
|
['onion'] = {
|
||
|
['name'] = 'onion',
|
||
|
['label'] = 'Onion',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'onion.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice Item'
|
||
|
},
|
||
|
|
||
|
['tea'] = {
|
||
|
['name'] = 'tea',
|
||
|
['label'] = 'Tea',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'tea.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice Item'
|
||
|
},
|
||
|
|
||
|
['coffee'] = {
|
||
|
['name'] = 'coffee',
|
||
|
['label'] = 'Coffee',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'coffee.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice Item'
|
||
|
},
|
||
|
|
||
|
['potato'] = {
|
||
|
['name'] = 'potato',
|
||
|
['label'] = 'Potato',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'potato.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice Item'
|
||
|
},
|
||
|
|
||
|
['oat'] = {
|
||
|
['name'] = 'oat',
|
||
|
['label'] = 'Oat',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'oat.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice Item'
|
||
|
},
|
||
|
|
||
|
['lettuce'] = {
|
||
|
['name'] = 'lettuce',
|
||
|
['label'] = 'Lettuce',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'lettuce.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A nice Item'
|
||
|
},
|
||
|
|
||
|
-- hunting
|
||
|
['leather'] = {['name'] = 'Leather', ['label'] = '', ['weight'] = 1, ['type'] = 'item', ['image'] = 'leather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Leather'},
|
||
|
['meat'] = {['name'] = 'Meat', ['label'] = '', ['weight'] = 1, ['type'] = 'item', ['image'] = 'meat.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Meat'},
|
||
|
['feather'] = {['name'] = 'Feather', ['label'] = '', ['weight'] = 1, ['type'] = 'item', ['image'] = 'feather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Feather'},
|
||
|
['coyote_leather'] = {['name'] = 'Coyote Leather', ['label'] = '', ['weight'] = 1, ['type'] = 'item', ['image'] = 'coyote_leather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Coyote Leather'},
|
||
|
['panther_leather'] = {['name'] = 'Panther Leather', ['label'] = '', ['weight'] = 1, ['type'] = 'item', ['image'] = 'panther_leather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Panther Leather'},
|
||
|
['antler'] = {['name'] = 'Antler', ['label'] = '', ['weight'] = 1, ['type'] = 'item', ['image'] = 'antler.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Antler'},
|
||
|
--- ps-weedplanting
|
||
|
['weedplant_seedm'] = {['name'] = 'weedplant_seedm', ['label'] = 'Male Weed Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weedplant_seed.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Male Weed Seed'},
|
||
|
['weedplant_seedf'] = {['name'] = 'weedplant_seedf', ['label'] = 'Female Weed Seed', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weedplant_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Female Weed Seed'},
|
||
|
['weedplant_branch'] = {['name'] = 'weedplant_branch', ['label'] = 'Weed Branch', ['weight'] = 10000, ['type'] = 'item', ['image'] = 'weedplant_branch.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Weed plant'},
|
||
|
['weedplant_weed'] = {['name'] = 'weedplant_weed', ['label'] = 'Dried Weed', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weedplant_weed.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Weed ready for packaging'},
|
||
|
['weedplant_packedweed'] = {['name'] = 'weedplant_packedweed', ['label'] = 'Packed Weed', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weedplant_weed.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Weed ready for sale'},
|
||
|
['weedplant_package'] = {['name'] = 'weedplant_package', ['label'] = 'Suspicious Package', ['weight'] = 10000, ['type'] = 'item', ['image'] = 'weedplant_package.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Suspicious Package'},
|
||
|
['plant_tub'] = {['name'] = 'plant_tub', ['label'] = 'Plant Tub', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'plant_tub.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Pot for planting plants'},
|
||
|
['empty_watering_can'] = {['name'] = 'empty_watering_can', ['label'] = 'Empty Watering Can', ['weight'] = 500, ['type'] = 'item', ['image'] = 'watering_can.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Empty watering can'},
|
||
|
['full_watering_can'] = {['name'] = 'full_watering_can', ['label'] = 'Full Watering Can', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'watering_can.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Watering can filled with water for watering plants'},
|
||
|
["keya"] = {["name"] = "keya", ["label"] = "Labkey A", ["weight"] = 0, ["type"] = "item", ["image"] = "keya.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Labkey A.."},
|
||
|
["usb_green"] = {["name"] = "usb_green", ["label"] = "USB Drive", ["weight"] = 1000, ["type"] = "item", ["image"] = "usb_green.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A green USB flash drive"},
|
||
|
["usb_red"] = {["name"] = "usb_red", ["label"] = "USB Drive", ["weight"] = 1000, ["type"] = "item", ["image"] = "usb_red.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A red USB flash drive"},
|
||
|
["usb_blue"] = {["name"] = "usb_blue", ["label"] = "USB Drive", ["weight"] = 1000, ["type"] = "item", ["image"] = "usb_blue.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A blue USB flash drive"},
|
||
|
["usb_gold"] = {["name"] = "usb_gold", ["label"] = "USB Drive", ["weight"] = 1000, ["type"] = "item", ["image"] = "usb_gold.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A gold USB flash drive"},
|
||
|
["boombox"] = {["name"] = "boombox", ["label"] = "Boombox", ["weight"] = 5000, ["type"] = "item", ["image"] = "boombox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Play some music anywhere."},
|
||
|
["usb_grey"] = {["name"] = "usb_grey", ["label"] = "USB Drive", ["weight"] = 1000, ["type"] = "item", ["image"] = "usb_grey.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A grey USB flash drive"},
|
||
|
["nitroradio"] = {
|
||
|
["name"] = "nitroradio",
|
||
|
["label"] = "Nitro Radio ",
|
||
|
["weight"] = 1000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "nitroradio.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "You can use this in Contracts"
|
||
|
},
|
||
|
|
||
|
["nitrocash"] = {
|
||
|
["name"] = "nitrocash",
|
||
|
["label"] = "Nitro Cash ",
|
||
|
["weight"] = 0,
|
||
|
["type"] = "item",
|
||
|
["image"] = "nitrocash.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = false,
|
||
|
["shouldClose"] = false,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "You can buy some cool stuff with this"
|
||
|
},
|
||
|
|
||
|
-- Shared Items
|
||
|
['skateboard'] = {['name'] = 'skateboard', ['label'] = 'Skateboard', ['weight'] = 3000, ['type'] = 'item', ['image'] = 'skateboard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Skateboard'},
|
||
|
-- uwu--
|
||
|
["emsbag"] = {["name"] = "emsbag", ["label"] = "emsbag", ["weight"] = 150, ["type"] = "item", ["image"] = "emsbag.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
-- UwuU Cafe Items
|
||
|
["shiny_wasabi"] = {["name"] = "shiny_wasabi", ["label"] = "Shiny wasabi", ["weight"] = 150, ["type"] = "item", ["image"] = "shiny_wasabi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["onion"] = {["name"] = "onion", ["label"] = "Onion", ["weight"] = 150, ["type"] = "item", ["image"] = "onion.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["chicken_thighs"] = {["name"] = "chicken_thighs", ["label"] = "Chicken thighs", ["weight"] = 150, ["type"] = "item", ["image"] = "chicken_thighs.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["virgin_olive_oil"] = {["name"] = "virgin_olive_oil", ["label"] = "Virgin olive oil", ["weight"] = 150, ["type"] = "item", ["image"] = "virgin_olive_oil.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["rice"] = {["name"] = "rice", ["label"] = "Rice", ["weight"] = 150, ["type"] = "item", ["image"] = "rice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["soy_sauce"] = {["name"] = "soy_sauce", ["label"] = "Soy sauce", ["weight"] = 150, ["type"] = "item", ["image"] = "soy_sauce.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["pullman_bread"] = {["name"] = "pullman_bread", ["label"] = "Pullman bread", ["weight"] = 150, ["type"] = "item", ["image"] = "pullman_bread.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["egg"] = {["name"] = "egg", ["label"] = "Egg", ["weight"] = 150, ["type"] = "item", ["image"] = "egg.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["chicken_breast"] = {["name"] = "chicken_breast", ["label"] = "Chicken breast", ["weight"] = 150, ["type"] = "item", ["image"] = "chicken_breast.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["flour"] = {["name"] = "flour", ["label"] = "Flour", ["weight"] = 150, ["type"] = "item", ["image"] = "flour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["butter"] = {["name"] = "butter", ["label"] = "Butter", ["weight"] = 150, ["type"] = "item", ["image"] = "butter.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["milk"] = {["name"] = "milk", ["label"] = "Milk", ["weight"] = 150, ["type"] = "item", ["image"] = "milk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sea_moss"] = {["name"] = "sea_moss", ["label"] = "Sea moss", ["weight"] = 150, ["type"] = "item", ["image"] = "sea_moss.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["matcha_powder"] = {["name"] = "matcha_powder", ["label"] = "Matcha powder", ["weight"] = 150, ["type"] = "item", ["image"] = "matcha_powder.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sugar"] = {["name"] = "sugar", ["label"] = "Sugar", ["weight"] = 150, ["type"] = "item", ["image"] = "suger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["dried_boba_tapioca_pearls"] = {["name"] = "dried_boba_tapioca_pearls", ["label"] = "Dried boba tapioca pearls", ["weight"] = 150, ["type"] = "item", ["image"] = "dried_boba_tapioca_pearls.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["juice"] = {["name"] = "juice", ["label"] = "Juice", ["weight"] = 150, ["type"] = "item", ["image"] = "juice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["lemon"] = {["name"] = "lemon", ["label"] = "Lemon", ["weight"] = 150, ["type"] = "item", ["image"] = "lemon.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["mint"] = {["name"] = "mint", ["label"] = "Mint", ["weight"] = 150, ["type"] = "item", ["image"] = "mint.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["chicken"] = {["name"] = "chicken", ["label"] = "Chicken", ["weight"] = 150, ["type"] = "item", ["image"] = "chicken.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["baking_powder"] = {["name"] = "baking_powder", ["label"] = "Baking powder", ["weight"] = 150, ["type"] = "item", ["image"] = "baking_powder.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["rice_flour"] = {["name"] = "rice_flour", ["label"] = "Rice flour", ["weight"] = 150, ["type"] = "item", ["image"] = "rice_flour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["awwdorable_valentines_chocolate"] = {["name"] = "awwdorable_valentines_chocolate", ["label"] = "Awwdorable valentines chocolate", ["weight"] = 150, ["type"] = "item", ["image"] = "awwdorable_valentines_chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["booba_milk_tea_1"] = {["name"] = "booba_milk_tea_1", ["label"] = "Booba milk tea Brown", ["weight"] = 150, ["type"] = "item", ["image"] = "booba_milk_tea_1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["booba_milk_tea_2"] = {["name"] = "booba_milk_tea_2", ["label"] = "Booba milk tea Orange", ["weight"] = 150, ["type"] = "item", ["image"] = "booba_milk_tea_2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["brewed_coffe"] = {["name"] = "brewed_coffe", ["label"] = "Brewed coffe", ["weight"] = 150, ["type"] = "item", ["image"] = "brewed_coffe.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cocoa_powder"] = {["name"] = "cocoa_powder", ["label"] = "Cocoa powder", ["weight"] = 150, ["type"] = "item", ["image"] = "cocoa_powder.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["doki_doki_pancakes"] = {["name"] = "doki_doki_pancakes", ["label"] = "Doki doki pancakes", ["weight"] = 150, ["type"] = "item", ["image"] = "doki_doki_pancakes.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["gingerkitty_cookie"] = {["name"] = "gingerkitty_cookie", ["label"] = "Gingerkitty cookie", ["weight"] = 150, ["type"] = "item", ["image"] = "gingerkitty_cookie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["hamburg_stake"] = {["name"] = "hamburg_stake", ["label"] = "Hamburg Steak", ["weight"] = 150, ["type"] = "item", ["image"] = "hamburg_stake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["hot_chocolate"] = {["name"] = "hot_chocolate", ["label"] = "Hot chocolate", ["weight"] = 150, ["type"] = "item", ["image"] = "hot_chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["jelly_beans"] = {["name"] = "jelly_beans", ["label"] = "Jelly beans", ["weight"] = 150, ["type"] = "item", ["image"] = "jelly_beans.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["lovely_hot_chocolate"] = {["name"] = "lovely_hot_chocolate", ["label"] = "lovely hot chocolate", ["weight"] = 150, ["type"] = "item", ["image"] = "lovely_hot_chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["matcha_powder"] = {["name"] = "matcha_powder", ["label"] = "Matcha powder", ["weight"] = 150, ["type"] = "item", ["image"] = "matcha_powder.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["matcha_coffee"] = {["name"] = "matcha_coffee", ["label"] = "Matcha coffee", ["weight"] = 150, ["type"] = "item", ["image"] = "matcha_coffee.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["meowchi_mochi_ice_cream"] = {["name"] = "meowchi_mochi_ice_cream", ["label"] = "Meowchi mochi ice cream", ["weight"] = 150, ["type"] = "item", ["image"] = "meowchi_mochi_ice_cream.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["noodles"] = {["name"] = "noodles", ["label"] = "Noodles", ["weight"] = 150, ["type"] = "item", ["image"] = "noodles.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["om_nom_omurice"] = {["name"] = "om_nom_omurice", ["label"] = "Om nom omurice", ["weight"] = 150, ["type"] = "item", ["image"] = "om_nom_omurice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["nuts"] = {["name"] = "nuts", ["label"] = "Nuts", ["weight"] = 150, ["type"] = "item", ["image"] = "nuts.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["rice_balls"] = {["name"] = "rice_balls", ["label"] = "Rice balls", ["weight"] = 150, ["type"] = "item", ["image"] = "rice_balls.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["rice_flour"] = {["name"] = "rice_flour", ["label"] = "Rice flour", ["weight"] = 150, ["type"] = "item", ["image"] = "rice_flour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sea_moss"] = {["name"] = "sea_moss", ["label"] = "Sea mossl", ["weight"] = 150, ["type"] = "item", ["image"] = "sea_moss.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["soy_sauce"] = {["name"] = "soy_sauce", ["label"] = "Soy saucesoy sauce", ["weight"] = 150, ["type"] = "item", ["image"] = "soy_sauce.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["strawberry"] = {["name"] = "strawberry", ["label"] = "Strawberry", ["weight"] = 150, ["type"] = "item", ["image"] = "strawberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["strawberry_shortcake"] = {["name"] = "strawberry_shortcake", ["label"] = "Strawberry shortcake", ["weight"] = 150, ["type"] = "item", ["image"] = "strawberry_shortcake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sugoi_katsu_sando"] = {["name"] = "sugoi_katsu_sando", ["label"] = "Sugoi katsu sando", ["weight"] = 150, ["type"] = "item", ["image"] = "sugoi_katsu_sando.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sweet_herbal_tea"] = {["name"] = "sweet_herbal_tea", ["label"] = "Sweet herbal tea", ["weight"] = 150, ["type"] = "item", ["image"] = "sweet_herbal_tea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["warm_chicken_noodle"] = {["name"] = "warm_chicken_noodle", ["label"] = "Warm chicken noodle", ["weight"] = 150, ["type"] = "item", ["image"] = "warm_chicken_noodle.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["glass_tall_dirty"] = {["name"] = "glass_tall_dirty", ["label"] = "Glass tall dirty", ["weight"] = 150, ["type"] = "item", ["image"] = "glass_tall_dirty.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["bar_bowl_dirty"] = {["name"] = "bar_bowl_dirty", ["label"] = "Bar bowl dirty", ["weight"] = 150, ["type"] = "item", ["image"] = "bar_bowl_dirty.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["bar_bowl"] = {["name"] = "bar_bowl", ["label"] = "Bar bowl", ["weight"] = 150, ["type"] = "item", ["image"] = "bar_bowl.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["steak"] = {["name"] = "steak", ["label"] = "Steak", ["weight"] = 150, ["type"] = "item", ["image"] = "steak.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["oxygen_cake"] = {["name"] = "oxygen_cake", ["label"] = "Oxygen cake", ["weight"] = 150, ["type"] = "item", ["image"] = "oxygen_cake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["dragos_fire_cupcake"] = {["name"] = "dragos_fire_cupcake", ["label"] = "Dragos fire cupcake", ["weight"] = 150, ["type"] = "item", ["image"] = "dragos_fire_cupcake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["kira_kira_currye"] = {["name"] = "kira_kira_currye", ["label"] = "Kira kira currye", ["weight"] = 150, ["type"] = "item", ["image"] = "kira_kira_currye.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["purrfect_parfait_ballaberry"] = {["name"] = "purrfect_parfait_ballaberry", ["label"] = "Purrfect parfait ballaberry", ["weight"] = 150, ["type"] = "item", ["image"] = "purrfect_parfait_ballaberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ballbarry_cupcake"] = {["name"] = "ballbarry_cupcake", ["label"] = "Ballbarry cupcake", ["weight"] = 150, ["type"] = "item", ["image"] = "ballbarry_cupcake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["purrfect_parfait"] = {["name"] = "purrfect_parfait", ["label"] = "Purrfect parfait", ["weight"] = 150, ["type"] = "item", ["image"] = "purrfect_parfait.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cat_macaroon_brown"] = {["name"] = "cat_macaroon_brown", ["label"] = "Cat macaroon brown", ["weight"] = 150, ["type"] = "item", ["image"] = "cat_macaroon_brown.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cat_macaroon_green"] = {["name"] = "cat_macaroon_green", ["label"] = "Cat macaroon green", ["weight"] = 150, ["type"] = "item", ["image"] = "cat_macaroon_green.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cat_macaroon_pink"] = {["name"] = "cat_macaroon_pink", ["label"] = "Cat macaroon pink", ["weight"] = 150, ["type"] = "item", ["image"] = "cat_macaroon_pink.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cat_macaroon_turquoise"] = {["name"] = "cat_macaroon_turquoise", ["label"] = "Cat macaroon turquoise", ["weight"] = 150, ["type"] = "item", ["image"] = "cat_macaroon_turquoise.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["brown_dye"] = {["name"] = "brown_dye", ["label"] = "Brown dye", ["weight"] = 150, ["type"] = "item", ["image"] = "brown_dye.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["pink_dye"] = {["name"] = "pink_dye", ["label"] = "Pink dye", ["weight"] = 150, ["type"] = "item", ["image"] = "pink_dye.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["green_dye"] = {["name"] = "green_dye", ["label"] = "Green dye", ["weight"] = 150, ["type"] = "item", ["image"] = "green_dye.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["turquoise_dye"] = {["name"] = "turquoise_dye", ["label"] = "Turquoise dye", ["weight"] = 150, ["type"] = "item", ["image"] = "turquoise_dye.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["plate"] = {["name"] = "plate", ["label"] = "Plate", ["weight"] = 150, ["type"] = "item", ["image"] = "plate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cup"] = {["name"] = "cup", ["label"] = "Cup", ["weight"] = 150, ["type"] = "item", ["image"] = "cup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cup_dirty"] = {["name"] = "cup_dirty", ["label"] = "Cup dirty", ["weight"] = 150, ["type"] = "item", ["image"] = "cup_dirty.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["plate_dirty"] = {["name"] = "plate_dirty", ["label"] = "Plate dirty", ["weight"] = 150, ["type"] = "item", ["image"] = "cat_purple.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ice"] = {["name"] = "ice", ["label"] = "Ice", ["weight"] = 150, ["type"] = "item", ["image"] = "ice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["brewed_coffee"] = {["name"] = "brewed_coffee", ["label"] = "Brewed Coffee", ["weight"] = 150, ["type"] = "item", ["image"] = "brewed_coffee.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
|
||
|
----- md-coke
|
||
|
["coke"] = {["name"] = "coke", ["label"] = "Raw Cocaine", ["weight"] = 1000, ["type"] = "item", ["image"] = "coke.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Processed cocaine"},
|
||
|
["coca_leaf"] = {["name"] = "coca_leaf", ["label"] = "Cocaine leaves", ["weight"] = 1500, ["type"] = "item", ["image"] = "coca_leaf.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Cocaine leaves that must be processed !"},
|
||
|
["poppyresin"] = {["name"] = "poppyresin", ["label"] = "Poppy resin", ["weight"] = 2000, ["type"] = "item", ["image"] = "poppyresin.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "It sticks to your fingers when you handle it."},
|
||
|
["heroin"] = {["name"] = "heroin", ["label"] = "Weak Heroin Powder", ["weight"] = 500, ["type"] = "item", ["image"] = "loosecoke.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Really addictive depressant..."},
|
||
|
["bakingsoda"] = {["name"] = "bakingsoda", ["label"] = "Baking Soda", ["weight"] = 300, ["type"] = "item", ["image"] = "bakingsoda.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Household Baking Soda!"},
|
||
|
['loosecoke'] = {['name'] = 'loosecoke', ['label'] = 'loose coke', ['weight'] = 0, ['type'] = 'item', ['image'] = 'loosecoke.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Paper made specifically for encasing and smoking tobacco or cannabis.'},
|
||
|
['loosecokestagetwo'] = {['name'] = 'loosecokestagetwo', ['label'] = 'More Pure Loose Coke', ['weight'] = 100, ['type'] = 'item', ['image'] = 'loosecokestagetwo.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['loosecokestagethree'] = {['name'] = 'loosecokestagethree', ['label'] = 'Purest Loose Coke', ['weight'] = 100, ['type'] = 'item', ['image'] = 'loosecokestagethree.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['cokebaggystagetwo'] = {['name'] = 'cokebaggystagetwo', ['label'] = 'Bag of Good Coke', ['weight'] = 100, ['type'] = 'item', ['image'] = 'cocaine_baggystagetwo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To get happy real quick'},
|
||
|
['cokebaggystagethree'] = {['name'] = 'cokebaggystagethree', ['label'] = 'Bag of Great Coke', ['weight'] = 100, ['type'] = 'item', ['image'] = 'cocaine_baggystagethree.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To get happy real quick'},
|
||
|
["cokestagetwo"] = {["name"] = "cokestagetwo", ["label"] = "Better Raw Cocaine", ["weight"] = 100, ["type"] = "item", ["image"] = "cokestagetwo.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Processed cocaine"},
|
||
|
["cokestagethree"] = {["name"] = "cokestagethree", ["label"] = "Best Raw Cocaine", ["weight"] = 100, ["type"] = "item", ["image"] = "cokestagethree.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Processed cocaine"},
|
||
|
|
||
|
|
||
|
----md-lsd
|
||
|
['lysergic_acid'] = {['name'] = 'lysergic_acid', ['label'] = 'Lysergic Acid', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lysergic_acid.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['diethylamide'] = {['name'] = 'diethylamide', ['label'] = 'Diethylamide', ['weight'] = 100, ['type'] = 'item', ['image'] = 'diethylamide.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['lsd_one_vial'] = {['name'] = 'lsd_one_vial', ['label'] = 'Weakest LSD Vial', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lsd_one_vial.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['lsd_vial_two'] = {['name'] = 'lsd_vial_two', ['label'] = 'Slightly Better LSD Vial', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lsd_vial_two.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['lsd_vial_three'] = {['name'] = 'lsd_vial_three', ['label'] = 'Good LSD', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lsd_vial_three.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['lsd_vial_four'] = {['name'] = 'lsd_vial_four', ['label'] = 'Really Good LSD', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lsd_vial_four.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['lsd_vial_five'] = {['name'] = 'lsd_vial_five', ['label'] = 'Amazing LSD', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lsd_vial_five.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['lsd_vial_six'] = {['name'] = 'lsd_vial_six', ['label'] = 'Purest LSD', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lsd_vial_six.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['tab_paper'] = {['name'] = 'tab_paper', ['label'] = 'Tab Paper', ['weight'] = 100, ['type'] = 'item', ['image'] = 'tab_paper.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['smileyfacesheet'] = {['name'] = 'smileyfacesheet', ['label'] = 'Smiley Face Sheet', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smileysheet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['wildcherrysheet'] = {['name'] = 'wildcherrysheet', ['label'] = 'Wild Cherry Sheet', ['weight'] = 100, ['type'] = 'item', ['image'] = 'wildcherrysheet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['yinyangsheet'] = {['name'] = 'yinyangsheet', ['label'] = 'Yin and Yang Sheet', ['weight'] = 100, ['type'] = 'item', ['image'] = 'yinyangsheet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['pineapplesheet'] = {['name'] = 'pineapplesheet', ['label'] = 'Pineapple Sheet', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pineapplesheet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['bartsheet'] = {['name'] = 'bartsheet', ['label'] = 'Bart Simpson Sheet', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bartsheet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['gratefuldeadsheet'] = {['name'] = 'gratefuldeadsheet', ['label'] = 'Grateful Dead Sheet', ['weight'] = 100, ['type'] = 'item', ['image'] = 'gratefuldeadsheet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['smiley_tabs'] = {['name'] = 'smiley_tabs', ['label'] = 'Smiley tabs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'smiley_tabs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['wildcherry_tabs'] = {['name'] = 'wildcherry_tabs', ['label'] = 'Wild Cherry Tabs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'wildcherry_tabs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['yinyang_tabs'] = {['name'] = 'yinyang_tabs', ['label'] = 'Yin and Yang Tabs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'yinyang_tabs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['pineapple_tabs'] = {['name'] = 'pineapple_tabs', ['label'] = 'Pineapple Tabs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pineapple_tabs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['bart_tabs'] = {['name'] = 'bart_tabs', ['label'] = 'Bart Simpson Tabs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bart_tabs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['gratefuldead_tabs'] = {['name'] = 'gratefuldead_tabs', ['label'] = 'Grateful Dead Tabs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'gratefuldead_tabs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'DONT USE IF YOU GET SEIZURES'},
|
||
|
['lsdlabkit'] = {['name'] = 'lsdlabkit', ['label'] = 'LSD Mixing Table', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'labkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['dirtylsdlabkit'] = {['name'] = 'dirtylsdlabkit', ['label'] = 'Dirty LSD Mixing Table', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'labkit_dirty.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
|
||
|
|
||
|
---- md heroin
|
||
|
["heroinstagetwo"] = {["name"] = "heroinstagetwo", ["label"] = "Better Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroinpowderstagetwo.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroinstagethree"] = {["name"] = "heroinstagethree", ["label"] = "Best Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroinpowderstagethree.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroincut"] = {["name"] = "heroincut", ["label"] = "Cut Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroinpowder.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroincutstagetwo"] = {["name"] = "heroincutstagetwo", ["label"] = "Better Cut Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroinpowderstagethree.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroincutstagethree"] = {["name"] = "heroincutstagethree", ["label"] = "Best Cut Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroinpowderstagetwo.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroinlabkit"] = {["name"] = "heroinlabkit", ["label"] = "Heroin Lab Kit", ["weight"] = 250, ["type"] = "item", ["image"] = "labkit.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["dirtyheroinlabkit"] = {["name"] = "dirtyheroinlabkit", ["label"] = "Dirty heroin Lab Kit", ["weight"] = 250, ["type"] = "item", ["image"] = "labkit_dirty.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroinvial"] = {["name"] = "heroinvial", ["label"] = "Vial Of Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroin.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroinvialstagetwo"] = {["name"] = "heroinvialstagetwo", ["label"] = "Better Vial of Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroinstagetwo.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroinvialstagethree"] = {["name"] = "heroinvialstagethree", ["label"] = "Best Vial Of Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroinstagethree.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroin_ready"] = {["name"] = "heroin_ready", ["label"] = "Syringe Of Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroin_ready.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroin_readystagetwo"] = {["name"] = "heroin_readystagetwo", ["label"] = "Syringe Of Better Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroin_readystagetwo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroin_readystagethree"] = {["name"] = "heroin_readystagethree", ["label"] = "Syringe Of Best Heroin", ["weight"] = 250, ["type"] = "item", ["image"] = "heroin_readystagethree.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emptyvial"] = {["name"] = "emptyvial", ["label"] = "empty vial", ["weight"] = 1, ["type"] = "item", ["image"] = "emptyvial.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ['combinable'] = nil, ["description"] = ""},
|
||
|
["needle"] = {["name"] = "needle", ["label"] = "Syringe", ["weight"] = 250, ["type"] = "item", ["image"] = "syringe.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
|
||
|
---- md crack
|
||
|
["crackrock"] = {["name"] = "crackrock", ["label"] = "Crack Rock", ["weight"] = 250, ["type"] = "item", ["image"] = "crackrock1.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["crackrockstagetwo"] = {["name"] = "crackrockstagetwo", ["label"] = "Better Crack Rock", ["weight"] = 250, ["type"] = "item", ["image"] = "crackrock2.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["crackrockstagethree"] = {["name"] = "crackrockstagethree", ["label"] = "Best Crack Rock", ["weight"] = 250, ["type"] = "item", ["image"] = "crackrock3.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["baggedcracked"] = {["name"] = "baggedcracked", ["label"] = "Bag Of Crack", ["weight"] = 250, ["type"] = "item", ["image"] = "crackbag1.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["baggedcrackedstagetwo"] = {["name"] = "baggedcrackedstagetwo", ["label"] = "Better Bag Of Crack", ["weight"] = 250, ["type"] = "item", ["image"] = "crackbag2.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["baggedcrackedstagethree"] = {["name"] = "baggedcrackedstagethree", ["label"] = "Best Bag Of Crack", ["weight"] = 250, ["type"] = "item", ["image"] = "crackbag3.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
---- shrooms
|
||
|
["shrooms"] = {["name"] = "shrooms", ["label"] = "Shrooms", ["weight"] = 250, ["type"] = "item", ["image"] = "shrooms.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
-- pharma
|
||
|
['prescription_pad'] = {['name'] = 'prescription_pad', ['label'] = 'Prescription Pad', ['weight'] = 10, ['type'] = 'item', ['image'] = 'prescriptionpad.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ''},
|
||
|
["vicodin_prescription"] = {["name"] = "vicodin_prescription", ["label"] = "Vicodin Prescription", ["weight"] = 250, ["type"] = "item", ["image"] = "vicodinprescription.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["adderal_prescription"] = {["name"] = "adderal_prescription", ["label"] = "Adderal Prescription", ["weight"] = 250, ["type"] = "item", ["image"] = "adderalprescription.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["morphine_prescription"] = {["name"] = "morphine_prescription", ["label"] = "Morphine Prescription", ["weight"] = 250, ["type"] = "item", ["image"] = "morphineprescription.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["xanax_prescription"] = {["name"] = "xanax_prescription", ["label"] = "Xanax Prescription", ["weight"] = 250, ["type"] = "item", ["image"] = "xanaxprescription.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
['adderal'] = {['name'] = 'adderal', ['label'] = 'Adderal', ['weight'] = 100, ['type'] = 'item', ['image'] = 'adderal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['vicodin'] = {['name'] = 'vicodin', ['label'] = 'Vicodin', ['weight'] = 100, ['type'] = 'item', ['image'] = 'vicodin.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['morphine'] = {['name'] = 'morphine', ['label'] = 'Morphine', ['weight'] = 100, ['type'] = 'item', ['image'] = 'morphine.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['xanax'] = {['name'] = 'xanax', ['label'] = 'Xanax', ['weight'] = 100, ['type'] = 'item', ['image'] = 'xanax.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['adderalbottle'] = {['name'] = 'adderalbottle', ['label'] = 'Adderal Bottle', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pillbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['vicodinbottle'] = {['name'] = 'vicodinbottle', ['label'] = 'Vicodin Bottle', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pillbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['morphinebottle'] = {['name'] = 'morphinebottle', ['label'] = 'Morphine Bottle', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pillbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
['xanaxbottle'] = {['name'] = 'xanaxbottle', ['label'] = 'Xanax Bottle', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pillbottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''},
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
-- ATM Robbery
|
||
|
['rfid_disruptor'] = {['name'] = 'rfid_disruptor', ['label'] = 'RFID Disruptor', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'rfid_disruptor.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = ' A Disruptor used for ATM transactions'},
|
||
|
['divingsuit'] = {['name'] = 'divingsuit', ['label'] = 'Diving Suit', ['weight'] = 1, ['type'] = 'item', ['image'] = 'divingsuit.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Diving suit and oxygen cylinder'},
|
||
|
['glove'] = {['name'] = 'glove', ['label'] = 'Glove', ['weight'] = 1, ['type'] = 'item', ['image'] = 'glove.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Glove'},
|
||
|
['crab'] = {['name'] = 'crab', ['label'] = 'Crab', ['weight'] = 1, ['type'] = 'item', ['image'] = 'crab.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Crab'},
|
||
|
['coral'] = {['name'] = 'coral', ['label'] = 'Coral', ['weight'] = 1, ['type'] = 'item', ['image'] = 'coral.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'coral'},
|
||
|
['lobster'] = {['name'] = 'lobster', ['label'] = 'Lobster', ['weight'] = 1, ['type'] = 'item', ['image'] = 'lobster.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'lobster'},
|
||
|
['Seashell'] = {['name'] = 'Seashell', ['label'] = 'Sea-shell', ['weight'] = 1, ['type'] = 'item', ['image'] = 'seashell.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Seashell'},
|
||
|
['sponge'] = {['name'] = 'sponge', ['label'] = 'Sponge', ['weight'] = 1, ['type'] = 'item', ['image'] = 'sponge.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sponge'},
|
||
|
['starfish'] = {['name'] = 'starfish', ['label'] = 'Starfish', ['weight'] = 1, ['type'] = 'item', ['image'] = 'starfish.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Urchin'},
|
||
|
['urchin'] = {['name'] = 'urchin', ['label'] = 'Urchin', ['weight'] = 1, ['type'] = 'item', ['image'] = 'urchin.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Urchin'},
|
||
|
|
||
|
["laptop_green"] = {["name"] = "laptop_green", ["label"] = "Laptop", ["weight"] = 2500, ["type"] = "item", ["image"] = "laptop_green.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A laptop that you got from Ph03nix"},
|
||
|
["green-laptop"] = {["name"] = "green-laptop", ["label"] = "Green Laptop", ["weight"] = 2500, ["type"] = "item", ["image"] = "laptop_green.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A laptop that you got from Ph03nix"},
|
||
|
|
||
|
["laptop_red"] = {["name"] = "laptop_red", ["label"] = "Laptop", ["weight"] = 2500, ["type"] = "item", ["image"] = "laptop_red.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A laptop that you got from Plague"},
|
||
|
["laptop_blue"] = {["name"] = "laptop_blue", ["label"] = "Laptop", ["weight"] = 2500, ["type"] = "item", ["image"] = "laptop_blue.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A laptop that you got from Ramsay"},
|
||
|
["laptop_gold"] = {["name"] = "laptop_gold", ["label"] = "Laptop", ["weight"] = 2500, ["type"] = "item", ["image"] = "laptop_gold.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A laptop that you got from Trinity"},
|
||
|
["lowervaultcodes"] = {["name"] = "lowervaultcodes", ["label"] = "Access Codes", ["weight"] = 0, ["type"] = "item", ["image"] = "lowervaultcodes.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A copy of the Pacific Bank lower vault access code.."},
|
||
|
["explosive"] = {["name"] = "explosive", ["label"] = "Explosive", ["weight"] = 5000, ["type"] = "item", ["image"] = "explosive.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An improvised explosive of fireworks and thermite"},
|
||
|
["nightvision"] = {["name"] = "nightvision", ["label"] = "Night Vision Goggles", ["weight"] = 6000, ["type"] = "item", ["image"] = "nightvision.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "These allow you to see in the dark"},
|
||
|
['rgbc'] = {['name'] = 'rgbc', ['label'] = 'RGB Controller', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rgbc.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rgb controller for use in vehicles!'},
|
||
|
['rgbkit'] = {['name'] = 'rgbkit', ['label'] = 'RGB Kit', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lightingkit.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fit a rgb lighting kit to your vehicle!'},
|
||
|
["syphoningkit"] = {["name"] = "syphoningkit", ["label"] = "Syphoning Kit", ["weight"] = 5000, ["type"] = "item", ["image"] = "syphoningkit.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A kit made to siphon gasoline from vehicles."},
|
||
|
["jerrycan"] = {["name"] = "jerrycan", ["label"] = "Jerry Can", ["weight"] = 15000, ["type"] = "item", ["image"] = "jerrycan.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Jerry Can made to hold gasoline."},
|
||
|
["alive_chicken"] = {["name"] = "alive_chicken", ["label"] = "Alive chicken", ["weight"] = 2000, ["type"] = "item", ["image"] = "alive_chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Alive Chicken"},
|
||
|
["slaughtered_chicken"] = {["name"] = "slaughtered_chicken", ["label"] = "Slaughtered chicken", ["weight"] = 2000, ["type"] = "item", ["image"] = "slaughteredchicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Slaughtered Chicken"},
|
||
|
["packagedchicken"] = {["name"] = "packagedchicken", ["label"] = "Packaged chicken", ["weight"] = 2000, ["type"] = "item", ["image"] = "packaged_chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Packaged Chicken"},
|
||
|
["petfood"] = {["name"] = "petfood", ["label"] = "Pet Food", ["weight"] = 500, ["type"] = "item", ["image"] = "petfood.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Food"},
|
||
|
["tennisball"] = {["name"] = "tennisball", ["label"] = "Tennis Ball", ["weight"] = 500, ["type"] = "item", ["image"] = "tennisball.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Food"},
|
||
|
['towingrope'] = {['name'] = 'towingrope', ['label'] = 'Towing Rope', ['weight'] = 200, ['type'] = 'item', ['image'] = 'expert_towingrope.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Towing Rope'},
|
||
|
['atmobject'] = {['name'] = 'atmobject', ['label'] = 'ATM', ['weight'] = 200, ['type'] = 'item', ['image'] = 'expert_atmobj.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'ATM'},
|
||
|
['casino_usb1'] = {['name'] = 'casino_usb1', ['label'] = 'USB Device', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_usb.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A USB Device'},
|
||
|
['casino_usb2'] = {['name'] = 'casino_usb2', ['label'] = 'USB Device', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_usb.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A USB Device'},
|
||
|
['casino_magnet'] = {['name'] = 'casino_magnet', ['label'] = 'High Powered Magnet', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_magnet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A high powered magnet'},
|
||
|
['casino_accesscode1'] = {['name'] = 'casino_accesscode1', ['label'] = 'Casino Access Codes', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_accesscode.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Access Codes'},
|
||
|
['casino_accesscode2'] = {['name'] = 'casino_accesscode2', ['label'] = 'Casino Access Codes', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_accesscode.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Access Codes'},
|
||
|
['casino_keycard'] = {['name'] = 'casino_keycard', ['label'] = 'Executive Keycard', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_keycard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grants unrestricted access..'},
|
||
|
['casino_green'] = {['name'] = 'casino_green', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_green.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Green Laptop'},
|
||
|
['casino_red'] = {['name'] = 'casino_red', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_red.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Red Laptop'},
|
||
|
['casino_blue'] = {['name'] = 'casino_blue', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_blue.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Blue Laptop'},
|
||
|
['casino_gold'] = {['name'] = 'casino_gold', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_gold.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Gold Laptop'},
|
||
|
['casino_bag'] = {['name'] = 'casino_bag', ['label'] = 'Duffel Bag', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_bag.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Black Duffel Bag'},
|
||
|
['casino_vaultcode'] = {['name'] = 'casino_vaultcode', ['label'] = 'Casino Vault Codes', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_accesscode.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Vault Access Codes'},
|
||
|
['coca_leaves'] = {['name'] = 'coca_leaves', ['label'] = 'Feilles de Coca', ['weight'] = 50, ['type'] = 'item', ['image'] = 'cocaineleaf.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Feuilles de coca pour produire de la Cocaïne.'},
|
||
|
['cocaine_bag'] = {['name'] = 'cocaine_bag', ['label'] = 'Pochon de Cocaïne', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'cocaine_baggy.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Pochon de Cocaïne que vous pouvez vendre.'},
|
||
|
["bodycam"] = {["name"] = "bodycam", ["label"] = "Body Camera", ["weight"] = 20, ["type"] = "item", ["image"] = "bodycam.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Body Camera"},
|
||
|
["tree_lumber"] = {["name"] = "tree_lumber", ["label"] = "Lumber", ["weight"] = 50, ["type"] = "item", ["image"] = "lumber.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tree_bark"] = {["name"] = "tree_bark", ["label"] = "Tree Bark", ["weight"] = 50, ["type"] = "item", ["image"] = "treebark.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["wood_plank"] = {["name"] = "wood_plank", ["label"] = "Wood Plank", ["weight"] = 50, ["type"] = "item", ["image"] = "woodplank.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
['pickaxe'] = {['name'] = 'pickaxe', ['label'] = 'Mining Pickaxe', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_pickaxe.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Classic\'s pickaxe for mining'},
|
||
|
['uncutgem'] = {['name'] = 'uncutgem', ['label'] = 'Uncut Gem', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uncutgem.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A Rough Gem'},
|
||
|
['emerald'] = {['name'] = 'emerald', ['label'] = 'Emerald', ['weight'] = 100, ['type'] = 'item', ['image'] = 'emerald.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A Emerald that shimmers'},
|
||
|
['ruby'] = {['name'] = 'ruby', ['label'] = 'Ruby', ['weight'] = 100, ['type'] = 'item', ['image'] = 'ruby.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A Ruby that shimmers'},
|
||
|
['mining_pan'] = {['name'] = 'mining_pan', ['label'] = 'Washing Pan', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_pan.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Classic\'s washing pan'},
|
||
|
['crushedstone'] = {['name'] = 'crushedstone', ['label'] = 'Crushed Stone', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'crushedstone.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Left over crumbles of stone'},
|
||
|
['stone'] = {['name'] = 'stone', ['label'] = 'Mined Stone', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_stone.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mined Stone'},
|
||
|
['mining_washedstone'] = {['name'] = 'mining_washedstone', ['label'] = 'Washed Stone', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_washedstone.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wasted Stone'},
|
||
|
['mining_ironfragment'] = {['name'] = 'mining_ironfragment', ['label'] = 'Iron Fragment', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_ironfragment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Iron fragment from mining'},
|
||
|
['mining_ironbar'] = {['name'] = 'mining_ironbar', ['label'] = 'Iron Bar', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_ironbar.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Iron Bar'},
|
||
|
['mining_goldnugget'] = {['name'] = 'mining_goldnugget', ['label'] = 'Golden Nugget', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_goldnugget.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Golden nugget from mining'},
|
||
|
['mining_goldbar'] = {['name'] = 'mining_goldbar', ['label'] = 'Gold Bar', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_goldbar.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Gold Bar'},
|
||
|
['mining_copperfragment'] = {['name'] = 'mining_copperfragment', ['label'] = 'Copper Fragment', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_copperfragment.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Copper fragment from mining'},
|
||
|
['mining_copperbar'] = {['name'] = 'mining_copperbar', ['label'] = 'Copper Bar', ['weight'] = 500, ['type'] = 'item', ['image'] = 'mining_copperbar.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Copper Bar'},
|
||
|
['wallet'] = {['name'] = 'wallet', ['label'] = 'Wallet', ['weight'] = 0, ['type'] = 'item', ['image'] = 'wallet.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Your Wallet '},
|
||
|
|
||
|
|
||
|
|
||
|
--uwu cafe--
|
||
|
["uwubbessence"] = {["name"] = "uwubbessence", ["label"] = "BerryBlue Essence", ["weight"] = 200, ["type"] = "item", ["image"] = "uwubbessence.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Essence from the Blueberry Gods."},
|
||
|
["uwuroseessence"] = {["name"] = "uwuroseessence", ["label"] = "Rose Essence", ["weight"] = 200, ["type"] = "item", ["image"] = "uwuroseessence.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Essence from the Rose Gods."},
|
||
|
["uwumintessence"] = {["name"] = "uwumintessence", ["label"] = "Mint Essence", ["weight"] = 200, ["type"] = "item", ["image"] = "uwumintessence.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Essence from the Mint Gods."},
|
||
|
["uwububbleteablueberry"] = {["name"] = "uwububbleteablueberry", ["label"] = "Berry Blue B-T", ["weight"] = 200, ["type"] = "item", ["image"] = "uwububbleteablueberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Lavender Tea with Blueberry Boba."},
|
||
|
["uwububbletearose"] = {["name"] = "uwububbletearose", ["label"] = "Rosey B-T", ["weight"] = 200, ["type"] = "item", ["image"] = "uwububbletearose.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sakura Rose Tea with Vanilla Boba."},
|
||
|
["uwububbleteamint"] = {["name"] = "uwububbleteamint", ["label"] = "Minty B-T", ["weight"] = 200, ["type"] = "item", ["image"] = "uwububbleteamint.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Matcha Tea with Mint Boba."},
|
||
|
["uwupancake"] = {["name"] = "uwupancake", ["label"] = "uWu Pancake", ["weight"] = 200, ["type"] = "item", ["image"] = "uwupancake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Korean savory pancake made with scallions."},
|
||
|
["uwucupcake"] = {["name"] = "uwucupcake", ["label"] = "uWu Cupcake", ["weight"] = 200, ["type"] = "item", ["image"] = "uwucupcake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sugar Kitty Cupcake!"},
|
||
|
["uwuvanillasandy"] = {["name"] = "uwuvanillasandy", ["label"] = "uWu V-Icecream Sandy", ["weight"] = 200, ["type"] = "item", ["image"] = "uwuvanillasandy.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sweet Vanilla Biscuit filled with Icecreamy!"},
|
||
|
["uwuchocsandy"] = {["name"] = "uwuchocsandy", ["label"] = "uWu C-Icecream Sandy", ["weight"] = 200, ["type"] = "item", ["image"] = "uwuchocsandy.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sweet Chocolate Biscuit filled with Icecreamy!"},
|
||
|
["uwubudhabowl"] = {["name"] = "uwubudhabowl", ["label"] = "uWu Budha Bowl", ["weight"] = 200, ["type"] = "item", ["image"] = "uwubudhabowl.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Bowl of nourishment and balance."},
|
||
|
["uwusushi"] = {["name"] = "uwusushi", ["label"] = "uWu Sushi", ["weight"] = 200, ["type"] = "item", ["image"] = "uwusushi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Designed as a window to your soul."},
|
||
|
["uwumisosoup"] = {["name"] = "uwumisosoup", ["label"] = "uWu Miso Soup", ["weight"] = 200, ["type"] = "item", ["image"] = "uwumisosoup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Fungus never tasted so good!"},
|
||
|
["vanillabean"] = {["name"] = "vanillabean", ["label"] = "Vanilla Bean", ["weight"] = 200, ["type"] = "item", ["image"] = "vanillabean.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Vanilla Bean - cooking ingredient"},
|
||
|
["egg"] = {["name"] = "egg", ["label"] = "Chicken Egg", ["weight"] = 200, ["type"] = "item", ["image"] = "egg.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Egg - cooking ingredient"},
|
||
|
["flour"] = {["name"] = "flour", ["label"] = "Flour", ["weight"] = 200, ["type"] = "item", ["image"] = "flour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Flour - cooking ingredient"},
|
||
|
["misopaste"] = {["name"] = "misopaste", ["label"] = "Miso Paste", ["weight"] = 200, ["type"] = "item", ["image"] = "misopaste.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Miso Paste - cooking ingredient"},
|
||
|
["tapiokaballs"] = {["name"] = "tapiokaballs", ["label"] = "Tapioka Balls", ["weight"] = 200, ["type"] = "item", ["image"] = "tapiokaballs.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Tapioka Balls ingredient for Bubble Tea!"},
|
||
|
["tea"] = {["name"] = "tea", ["label"] = "Tempting Tea", ["weight"] = 200, ["type"] = "item", ["image"] = "tea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Its not just tea..."},
|
||
|
["tofu"] = {["name"] = "tofu", ["label"] = "Firm Tofu", ["weight"] = 200, ["type"] = "item", ["image"] = "tofu.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Tofu. Save a Cow and chow on Tofu!"},
|
||
|
["nori"] = {["name"] = "nori", ["label"] = "Nori Sheets", ["weight"] = 200, ["type"] = "item", ["image"] = "nori.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Gift from the Ocean, goes well with Rice"},
|
||
|
["rawsugar"] = {["name"] = "rawsugar", ["label"] = "Raw Sugar", ["weight"] = 200, ["type"] = "item", ["image"] = "rawsugar.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Raw Sugar - cooking ingredient"},
|
||
|
["rice"] = {["name"] = "rice", ["label"] = "Rice", ["weight"] = 200, ["type"] = "item", ["image"] = "rice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Rice - cooking ingredient"},
|
||
|
["tuna"] = {["name"] = "tuna", ["label"] = "Blue Fin Tuna", ["weight"] = 300, ["type"] = "item", ["image"] = "tuna.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Blue Fin Tuna - cooking ingredient"},
|
||
|
["umami"] = {["name"] = "umami", ["label"] = "Umami Beans", ["weight"] = 300, ["type"] = "item", ["image"] = "umami.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Healthy and Delicious"},
|
||
|
["mixedlettuce"] = {["name"] = "mixedlettuce", ["label"] = "Mixed Lettuce", ["weight"] = 250, ["type"] = "item", ["image"] = "mixedlettuce.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Crispy assortment of mixed lettuce"},
|
||
|
["mango"] = {["name"] = "mango", ["label"] = "Mango", ["weight"] = 300, ["type"] = "item", ["image"] = "mango.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Mango"},
|
||
|
["avocado"] = {["name"] = "avocado", ["label"] = "Avocado", ["weight"] = 300, ["type"] = "item", ["image"] = "avocado.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Avocado"},
|
||
|
["chocolate"] = {["name"] = "chocolate", ["label"] = "Chocolate", ["weight"] = 200, ["type"] = "item", ["image"] = "chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chocolate - cooking ingredient"},
|
||
|
["uwu_toy1"] = {["name"] = "uwu_toy1", ["label"] = "uWu Blitz", ["weight"] = 50, ["type"] = "item", ["image"] = "uwu_toy1.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Blitz "},
|
||
|
["uwu_toy2"] = {["name"] = "uwu_toy2", ["label"] = "uWu Scratzes", ["weight"] = 50, ["type"] = "item", ["image"] = "uwu_toy2.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Scratzes "},
|
||
|
["uwu_toy3"] = {["name"] = "uwu_toy3", ["label"] = "uWu Citruz", ["weight"] = 50, ["type"] = "item", ["image"] = "uwu_toy3.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Citruz "},
|
||
|
["uwu_toy4"] = {["name"] = "uwu_toy4", ["label"] = "uWu Zoxy", ["weight"] = 50, ["type"] = "item", ["image"] = "uwu_toy4.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Zoxy "},
|
||
|
["uwubentobox"] = {["name"] = "uwubentobox", ["label"] = "^=◕ᴥ◕=^ Bento Box", ["weight"] = 225, ["type"] = "item", ["image"] = "uwubentobox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A ◕ᴥ◕ Selection with a surprise!"},
|
||
|
|
||
|
-- Burger Shot
|
||
|
-- Food
|
||
|
["burger-bleeder"] = {["name"] = "burger-bleeder", ["label"] = "Bleeder", ["weight"] = 250, ["type"] = "item", ["image"] = "bs_the-bleeder.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sates Hunger."},
|
||
|
["burger-moneyshot"] = {["name"] = "burger-moneyshot", ["label"] = "Moneyshot", ["weight"] = 300, ["type"] = "item", ["image"] = "bs_money-shot.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sates Hunger."},
|
||
|
["burger-torpedo"] = {["name"] = "burger-torpedo", ["label"] = "Torpedo", ["weight"] = 310, ["type"] = "item", ["image"] = "bs_torpedo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sates Hunger."},
|
||
|
["burger-heartstopper"] = {["name"] = "burger-heartstopper", ["label"] = "Heartstopper", ["weight"] = 2500, ["type"] = "item", ["image"] = "bs_the-heart-stopper.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sates Hunger."},
|
||
|
["burger-meatfree"] = {["name"] = "burger-meatfree", ["label"] = "MeatFree", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_meat-free.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sates Hunger."},
|
||
|
["burger-fries"] = {["name"] = "burger-fries", ["label"] = "Fries", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_fries.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sates Hunger."},
|
||
|
-- Drinks
|
||
|
["burger-softdrink"] = {["name"] = "burger-softdrink", ["label"] = "Soft Drink", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_softdrink.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ice Cold Drink."},
|
||
|
["burger-mshake"] = {["name"] = "burger-mshake", ["label"] = "Milkshake", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_milkshake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Hand-scooped for you!"},
|
||
|
|
||
|
--Ingredients
|
||
|
["burger-bun"] = {["name"] = "burger-bun", ["label"] = "Bun", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_bun.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
["burger-meat"] = {["name"] = "burger-meat", ["label"] = "Cooked Patty", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_patty.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
["burger-lettuce"] = {["name"] = "burger-lettuce", ["label"] = "Lettuce", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_lettuce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
["burger-tomato"] = {["name"] = "burger-tomato", ["label"] = "Tomato", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_tomato.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
["burger-raw"] = {["name"] = "burger-raw", ["label"] = "Raw Patty", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_patty_raw.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
["burger-potato"] = {["name"] = "burger-potato", ["label"] = "Bag of Potatoes", ["weight"] = 1500, ["type"] = "item", ["image"] = "bs_potato.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
["burger-mshakeformula"] = {["name"] = "burger-mshakeformula", ["label"] = "Milkshake Formula", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_ingredients_icecream.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
["burger-sodasyrup"] = {["name"] = "burger-sodasyrup", ["label"] = "Soda Syrup", ["weight"] = 125, ["type"] = "item", ["image"] = "bs_ingredients_hfcs.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Ingredient"},
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
-- Farming
|
||
|
["apple"] = {["name"] = "apple", ["label"] = "Apple", ["weight"] = 25, ["type"] = "item", ["image"] = "apple.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["apple_juice"] = {["name"] = "apple_juice", ["label"] = "Apple Juice", ["weight"] = 100, ["type"] = "item", ["image"] = "apple_juice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emptycowbucket"] = {["name"] = "emptycowbucket", ["label"] = "Empty Bucket", ["weight"] = 25, ["type"] = "item", ["image"] = "emptybucket.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["milkbucket"] = {["name"] = "milkbucket", ["label"] = "Milk Bucket", ["weight"] = 75, ["type"] = "item", ["image"] = "milkbucket.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["raw_beef"] = {["name"] = "raw_beef", ["label"] = "Raw Beef", ["weight"] = 25, ["type"] = "item", ["image"] = "raw_beef.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["beef"] = {["name"] = "beef", ["label"] = "Beef", ["weight"] = 25, ["type"] = "item", ["image"] = "beef.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["milk"] = {["name"] = "milk", ["label"] = "Milk", ["weight"] = 50, ["type"] = "item", ["image"] = "milk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["rawpumpkin"] = {["name"] = "rawpumpkin", ["label"] = "Raw Pumpkin", ["weight"] = 50, ["type"] = "item", ["image"] = "raw_pumpkin.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["pumpkinpiebox"] = {["name"] = "pumpkinpiebox", ["label"] = "Box of Pie", ["weight"] = 25, ["type"] = "item", ["image"] = "pumpkinpiebox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = {accept = {'weapon_knife'}, reward = 'slicedpie', anim = {['dict'] = 'anim@amb@business@weed@weed_inspecting_high_dry@', ['lib'] = 'weed_inspecting_high_base_inspector', ['text'] = '', ['timeOut'] = 7500, }}, ["description"] = ""},
|
||
|
["slicedpie"] = {["name"] = "slicedpie", ["label"] = "Slice of Pie", ["weight"] = 10, ["type"] = "item", ["image"] = "slicedpie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["corncob"] = {["name"] = "corncob", ["label"] = "Corn Cob", ["weight"] = 15, ["type"] = "item", ["image"] = "corncob.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["canofcorn"] = {["name"] = "canofcorn", ["label"] = "Can Of Corn", ["weight"] = 15, ["type"] = "item", ["image"] = "canofcorn.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["grapes"] = {["name"] = "grapes", ["label"] = "Grapes", ["weight"] = 15, ["type"] = "item", ["image"] = "grapes.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
-- ["grapejuice"] = {["name"] = "grapejuice", ["label"] = "Grape Juice", ["weight"] = 15, ["type"] = "item", ["image"] = "grapejuice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["greenpepper"] = {["name"] = "greenpepper", ["label"] = "Green Pepper", ["weight"] = 15, ["type"] = "item", ["image"] = "greenpepper.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["chillypepper"] = {["name"] = "chillypepper", ["label"] = "Chilly Pepper", ["weight"] = 15, ["type"] = "item", ["image"] = "chillypepper.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["hotsauce"] = {["name"] = "hotsauce", ["label"] = "Hot Sauce", ["weight"] = 15, ["type"] = "item", ["image"] = "hotsauce.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tomato"] = {["name"] = "tomato", ["label"] = "tomato", ["weight"] = 15, ["type"] = "item", ["image"] = "tomato.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tomatopaste"] = {["name"] = "tomatopaste", ["label"] = "tomato Paste", ["weight"] = 25, ["type"] = "item", ["image"] = "tomatopaste.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["soybeans"] = {["name"] = "soybeans", ["label"] = "Soy Beans", ["weight"] = 10, ["type"] = "item", ["image"] = "soybeans.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["raw_bacon"] = {["name"] = "raw_bacon", ["label"] = "Raw Bacon", ["weight"] = 25, ["type"] = "item", ["image"] = "raw_bacon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["raw_sausage"] = {["name"] = "raw_sausage", ["label"] = "Raw Sausage", ["weight"] = 25, ["type"] = "item", ["image"] = "raw_sausage.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["raw_pork"] = {["name"] = "raw_pork", ["label"] = "Raw Pork", ["weight"] = 25, ["type"] = "item", ["image"] = "raw_pork.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["raw_ham"] = {["name"] = "raw_ham", ["label"] = "Raw Ham", ["weight"] = 25, ["type"] = "item", ["image"] = "raw_ham.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cooked_bacon"] = {["name"] = "cooked_bacon", ["label"] = "Cooked Bacon", ["weight"] = 25, ["type"] = "item", ["image"] = "cooked_bacon.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cooked_sausage"] = {["name"] = "cooked_sausage", ["label"] = "Cooked Sausage", ["weight"] = 25, ["type"] = "item", ["image"] = "cooked_sausage.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cooked_pork"] = {["name"] = "cooked_pork", ["label"] = "Cooked Pork", ["weight"] = 25, ["type"] = "item", ["image"] = "cooked_pork.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cooked_ham"] = {["name"] = "cooked_ham", ["label"] = "Cooked Ham", ["weight"] = 25, ["type"] = "item", ["image"] = "cooked_ham.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["pig_leather"] = {["name"] = "pig_leather", ["label"] = "Pig Skin", ["weight"] = 50, ["type"] = "item", ["image"] = "pig_leather.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cow_leather"] = {["name"] = "cow_leather", ["label"] = "Cow Skin", ["weight"] = 50, ["type"] = "item", ["image"] = "cow_leather.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
|
||
|
-- Ammo ITEMS
|
||
|
['pistol_ammo'] = {['name'] = 'pistol_ammo', ['label'] = 'Pistol ammo', ['weight'] = 400, ['type'] = 'item', ['image'] = 'np_pistol-ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Pistols', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['rifle_ammo'] = {['name'] = 'rifle_ammo', ['label'] = 'Rifle ammo', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'np_rifle-ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Rifles', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['smg_ammo'] = {['name'] = 'smg_ammo', ['label'] = 'SMG ammo', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'np_sub-ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Sub Machine Guns', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['shotgun_ammo'] = {['name'] = 'shotgun_ammo', ['label'] = 'Shotgun ammo', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'np_shotgun-ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Shotguns', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['mg_ammo'] = {['name'] = 'mg_ammo', ['label'] = 'MG ammo', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'np_lmg-ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Machine Guns', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['snp_ammo'] = {['name'] = 'snp_ammo', ['label'] = 'Sniper ammo', ['weight'] = 3500, ['type'] = 'item', ['image'] = 'np_sniper-ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for Sniper Rifles', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['emp_ammo'] = {['name'] = 'emp_ammo', ['label'] = 'EMP Ammo', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'np_emp_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for EMP Launcher', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Addon Ammo Items AMMO_STAFF
|
||
|
['paintball-ammo'] = {['name'] = 'paintball-ammo', ['label'] = 'Paintballs', ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_paintball_ammo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ammo for a Paintball Gun', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["taserammo"] = {["name"] = "taserammo", ["label"] = "Taser Cartridges", ["weight"] = 500, ["type"] = "item", ["image"] = "taserammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Government (PD/EMS/DOC) Issued Equipment", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rpg_ammo"] = {["name"] = "rpg_ammo", ["label"] = "Rocket", ["weight"] = 5000, ["type"] = "item", ["image"] = "np_rpgammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "RPG Rocket - be careful", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["firework_ammo"] = {["name"] = "rpg_ammo", ["label"] = "Firework Rocket", ["weight"] = 5000, ["type"] = "item", ["image"] = "np_rpgammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Firework Rocket - be careful", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mana"] = {["name"] = "mana", ["label"] = "Mana", ["weight"] = 100, ["type"] = "item", ["image"] = "np_spellblue.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Mana Regen for a Staff", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- Card ITEMS
|
||
|
['policecard'] = {['name'] = 'policecard', ['label'] = 'Police Badge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'np_pd_badge.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A card containing all your information to identify yourself', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
['id_card'] = {['name'] = 'id_card', ['label'] = 'ID Card', ['weight'] = 100, ['type'] = 'item', ['image'] = 'id_card.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A card containing all your information to identify yourself', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['driver_license'] = {['name'] = 'driver_license', ['label'] = 'Drivers License', ['weight'] = 100, ['type'] = 'item', ['image'] = 'driver_license.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Permit to show you can drive a vehicle', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['lawyerpass'] = {['name'] = 'lawyerpass', ['label'] = 'Lawyer Pass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'lawyerpass.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Pass exclusive to lawyers to show they can represent a suspect', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weaponlicense'] = {['name'] = 'weaponlicense', ['label'] = 'Weapon License', ['weight'] = 100, ['type'] = 'item', ['image'] = 'weapon_license.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Weapon License', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["hlicence"] = {["name"] = "hlicence", ["label"] = "Hunting License", ["weight"] = 100, ["type"] = "item", ["image"] = "huntinglicense.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Permit to show officals that you can legally hunt.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['visa'] = {['name'] = 'visa', ['label'] = 'Visa Card', ['weight'] = 100, ['type'] = 'item', ['image'] = 'visacard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Visa can be used via ATM', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['mastercard'] = {['name'] = 'mastercard', ['label'] = 'Master Card', ['weight'] = 100, ['type'] = 'item', ['image'] = 'mastercard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'MasterCard can be used via ATM', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['security_card_01'] = {['name'] = 'security_card_01', ['label'] = 'Security Card A', ['weight'] = 100, ['type'] = 'item', ['image'] = 'security_card_01.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A security card... I wonder what it goes to', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['security_card_02'] = {['name'] = 'security_card_02', ['label'] = 'Security Card B', ['weight'] = 100, ['type'] = 'item', ['image'] = 'security_card_02.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A security card... I wonder what it goes to', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Eat ITEMS
|
||
|
['tosti'] = {['name'] = 'tosti', ['label'] = 'Grilled Cheese Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'tosti.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['twerks_candy'] = {['name'] = 'twerks_candy', ['label'] = 'Twerks', ['weight'] = 100, ['type'] = 'item', ['image'] = 'twerks_candy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some delicious candy :O', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['snikkel_candy'] = {['name'] = 'snikkel_candy', ['label'] = 'Snikkel', ['weight'] = 100, ['type'] = 'item', ['image'] = 'snikkel_candy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some delicious candy :O', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['sandwich'] = {['name'] = 'sandwich', ['label'] = 'Sandwich', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice bread for your stomach', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Drink ITEMS
|
||
|
['water_bottle'] = {['name'] = 'water_bottle', ['label'] = 'Bottle of Water', ['weight'] = 500, ['type'] = 'item', ['image'] = 'water_bottle.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['coffee'] = {['name'] = 'coffee', ['label'] = 'Coffee', ['weight'] = 200, ['type'] = 'item', ['image'] = 'coffee.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pump 4 Caffeine', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['kurkakola'] = {['name'] = 'kurkakola', ['label'] = 'Cola', ['weight'] = 500, ['type'] = 'item', ['image'] = 'cola.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Alcohol
|
||
|
['beer'] = {['name'] = 'beer', ['label'] = 'Beer', ['weight'] = 500, ['type'] = 'item', ['image'] = 'beer.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nothing like a good cold beer!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['whiskey'] = {['name'] = 'whiskey', ['label'] = 'Whiskey', ['weight'] = 500, ['type'] = 'item', ['image'] = 'whiskey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['vodka'] = {['name'] = 'vodka', ['label'] = 'Vodka', ['weight'] = 500, ['type'] = 'item', ['image'] = 'vodka.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For all the thirsty out there', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['grape'] = {['name'] = 'grape', ['label'] = 'Grape', ['weight'] = 100, ['type'] = 'item', ['image'] = 'grape.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Mmmmh yummie, grapes', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['wine'] = {['name'] = 'wine', ['label'] = 'Wine', ['weight'] = 300, ['type'] = 'item', ['image'] = 'wine.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Some good wine to drink on a fine evening', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- ['grapejuice'] = {['name'] = 'grapejuice', ['label'] = 'Grape Juice', ['weight'] = 200, ['type'] = 'item', ['image'] = 'grapejuice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Grape juice is said to be healthy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Drugs
|
||
|
['joint'] = {['name'] = 'joint', ['label'] = 'Joint', ['weight'] = 500, ['type'] = 'item', ['image'] = 'joint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sidney would be very proud at you', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cokebaggy'] = {['name'] = 'cokebaggy', ['label'] = 'Bag of Coke', ['weight'] = 500, ['type'] = 'item', ['image'] = 'cocaine_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To get happy real quick', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['crack_baggy'] = {['name'] = 'crack_baggy', ['label'] = 'Bag of Crack', ['weight'] = 500, ['type'] = 'item', ['image'] = 'crack_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To get happy faster', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['xtcbaggy'] = {['name'] = 'xtcbaggy', ['label'] = 'Bag of XTC', ['weight'] = 500, ['type'] = 'item', ['image'] = 'xtc_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pop those pills baby', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_brick'] = {['name'] = 'weed_brick', ['label'] = 'Weed Brick', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'weed_brick.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '1KG Weed Brick to sell to large customers.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['coke_brick'] = {['name'] = 'coke_brick', ['label'] = 'Coke Brick', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'coke_brick.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Heavy package of cocaine, mostly used for deals and takes a lot of space', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['oxy'] = {['name'] = 'oxy', ['label'] = 'Prescription Oxy', ['weight'] = 500, ['type'] = 'item', ['image'] = 'oxy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The Label Has Been Ripped Off', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['rolling_paper'] = {['name'] = 'rolling_paper', ['label'] = 'Rolling Paper', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rolling_paper.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = {accept = {'weed_white-widow', 'weed_skunk', 'weed_purple-haze', 'weed_og-kush', 'weed_amnesia', 'weed_ak47', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false}, reward = 'joint', anim = {['dict'] = 'anim@amb@business@weed@weed_inspecting_high_dry@', ['lib'] = 'weed_inspecting_high_base_inspector', ['text'] = 'Rolling joint', ['timeOut'] = 5000, }, ['created'] = nil, ["decay"] = 0.0}, ['description'] = 'Paper made specifically for encasing and smoking tobacco or cannabis.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Drug Processing
|
||
|
["wet_weed"] = {["name"] = "wet_weed", ["label"] = "Moist Weed", ["weight"] = 3000, ["type"] = "item", ["image"] = "wet_weed.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Wet weed that needs to be treated!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["coca_leaf"] = {["name"] = "coca_leaf", ["label"] = "Cocaine leaves", ["weight"] = 1500, ["type"] = "item", ["image"] = "coca_leaf.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Cocaine leaves that must be processed !", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["cannabis"] = {["name"] = "cannabis", ["label"] = "Cannabis", ["weight"] = 2500, ["type"] = "item", ["image"] = "cannabis.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Uncured cannabis", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["marijuana"] = {["name"] = "marijuana", ["label"] = "Marijuana", ["weight"] = 500, ["type"] = "item", ["image"] = "marijuana.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Some fine smelling buds.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["chemicals"] = {["name"] = "chemicals", ["label"] = "Chemicals", ["weight"] = 1500, ["type"] = "item", ["image"] = "chemicals.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Chemicals, handle with care...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["poppyresin"] = {["name"] = "poppyresin", ["label"] = "Poppy resin", ["weight"] = 2000, ["type"] = "item", ["image"] = "poppyresin.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "It sticks to your fingers when you handle it.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["heroin"] = {["name"] = "heroin", ["label"] = "Heroin", ["weight"] = 500, ["type"] = "item", ["image"] = "heroin.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Really addictive depressant...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["lsa"] = {["name"] = "lsa", ["label"] = "LSA", ["weight"] = 500, ["type"] = "item", ["image"] = "lsa.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Almost ready to party...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["lsd"] = {["name"] = "lsd", ["label"] = "LSD", ["weight"] = 500, ["type"] = "item", ["image"] = "lsd.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Lets get this party started!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["hydrochloric_acid"] = {["name"] = "hydrochloric_acid", ["label"] = "Hydrochloric Acid", ["weight"] = 1500, ["type"] = "item", ["image"] = "hydrochloric_acid.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Chemicals, handle with care!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["sodium_hydroxide"] = {["name"] = "sodium_hydroxide", ["label"] = "Sodium Hydroxide", ["weight"] = 1500, ["type"] = "item", ["image"] = "sodium_hydroxide.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Chemicals, handle with care!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["sulfuric_acid"] = {["name"] = "sulfuric_acid", ["label"] = "Sulfuric Acid", ["weight"] = 1500, ["type"] = "item", ["image"] = "sulfuric_acid.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Chemicals, handle with care!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["thionyl_chloride"] = {["name"] = "thionyl_chloride", ["label"] = "Thionyl Chloride", ["weight"] = 1500, ["type"] = "item", ["image"] = "thionyl_chloride.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Chemicals, handle with care!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["liquidmix"] = {["name"] = "liquidmix", ["label"] = "Liquid Chem Mix", ["weight"] = 1500, ["type"] = "item", ["image"] = "liquidmix.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Chemicals, handle with care!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["bakingsoda"] = {["name"] = "bakingsoda", ["label"] = "Baking Soda", ["weight"] = 1500, ["type"] = "item", ["image"] = "bakingsoda.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Household Baking Soda!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["chemicalvapor"] = {["name"] = "chemicalvapor", ["label"] = "Chemical Vapors", ["weight"] = 1500, ["type"] = "item", ["image"] = "chemicalvapor.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "High Pressure Chemical Vapors, Explosive!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["trimming_scissors"] = {["name"] = "trimming_scissors", ["label"] = "Trimming Scissors", ["weight"] = 1500, ["type"] = "item", ["image"] = "trimming_scissors.png", ['created'] = nil, ["decay"] = 0.0, ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["expire"] = 90, ["description"] = "Very Sharp Trimming Scissors", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['methkey'] = {['name'] = 'methkey', ['label'] = 'Key A', ['weight'] = 200, ['type'] = 'item', ['image'] = 'keya.png', ['created'] = nil, ["decay"] = 0.0, ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Random Key, with "Walter" Engraved on the Back...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cocainekey'] = {['name'] = 'cocainekey', ['label'] = 'Key B', ['weight'] = 200, ['type'] = 'item', ['image'] = 'keyb.png', ['created'] = nil, ["decay"] = 0.0, ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Random Key, with a "Razorblade" Engraved on the Back...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weedkey'] = {['name'] = 'weedkey', ['label'] = 'Key C', ['weight'] = 200, ['type'] = 'item', ['image'] = 'keyc.png', ['created'] = nil, ["decay"] = 0.0, ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Random Key, with a "Seed" Engraved on the Back...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['finescale'] = {['name'] = 'finescale', ['label'] = 'Fine Scale', ['weight'] = 200, ['type'] = 'item', ['image'] = 'finescale.png', ['created'] = nil, ["decay"] = 0.0, ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Scale Used for Fine Powders and Materials.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['coke_small_brick'] = {['name'] = 'coke_small_brick', ['label'] = 'Coke Package', ['weight'] = 350, ['type'] = 'item', ['image'] = 'coke_small_brick.png', ['created'] = nil, ["decay"] = 0.0, ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Small package of cocaine, mostly used for deals and takes a lot of space', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Seed And Weed
|
||
|
['weed_white-widow'] = {['name'] = 'weed_white-widow', ['label'] = 'White Widow 2g', ['weight'] = 200, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g White Widow', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_skunk'] = {['name'] = 'weed_skunk', ['label'] = 'Skunk 2g', ['weight'] = 200, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g Skunk', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_purple-haze'] = {['name'] = 'weed_purple-haze', ['label'] = 'Purple Haze 2g', ['weight'] = 200, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g Purple Haze', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_og-kush'] = {['name'] = 'weed_og-kush', ['label'] = 'OGKush 2g', ['weight'] = 200, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g OG Kush', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_amnesia'] = {['name'] = 'weed_amnesia', ['label'] = 'Amnesia 2g', ['weight'] = 200, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g Amnesia', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_ak47'] = {['name'] = 'weed_ak47', ['label'] = 'AK47 2g', ['weight'] = 200, ['type'] = 'item', ['image'] = 'weed_baggy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed bag with 2g AK47', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_white-widow_seed'] = {['name'] = 'weed_white-widow_seed', ['label'] = 'White Widow Seed', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A weed seed of White Widow', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_skunk_seed'] = {['name'] = 'weed_skunk_seed', ['label'] = 'Skunk Seed', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of Skunk', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_purple-haze_seed'] = {['name'] = 'weed_purple-haze_seed', ['label'] = 'Purple Haze Seed', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of Purple Haze', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_og-kush_seed'] = {['name'] = 'weed_og-kush_seed', ['label'] = 'OGKush Seed', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of OG Kush', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_amnesia_seed'] = {['name'] = 'weed_amnesia_seed', ['label'] = 'Amnesia Seed', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of Amnesia', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_ak47_seed'] = {['name'] = 'weed_ak47_seed', ['label'] = 'AK47 Seed', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_seed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weed seed of AK47', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['empty_weed_bag'] = {['name'] = 'empty_weed_bag', ['label'] = 'Empty Bag', ['weight'] = 10, ['type'] = 'item', ['image'] = 'weed_baggy_empty.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small empty bag', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['weed_nutrition'] = {['name'] = 'weed_nutrition', ['label'] = 'Plant Fertilizer', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'weed_nutrition.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Plant nutrition', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Material
|
||
|
['plastic'] = {['name'] = 'plastic', ['label'] = 'Plastic', ['weight'] = 100, ['type'] = 'item', ['image'] = 'plastic.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'RECYCLE! - Greta Thunberg 2019', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['metalscrap'] = {['name'] = 'metalscrap', ['label'] = 'Metal Scrap', ['weight'] = 100, ['type'] = 'item', ['image'] = 'metalscrap.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'You can probably make something nice out of this', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['copper'] = {['name'] = 'copper', ['label'] = 'Copper', ['weight'] = 100, ['type'] = 'item', ['image'] = 'copper.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Nice piece of metal that you can probably use for something', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['aluminum'] = {['name'] = 'aluminum', ['label'] = 'Aluminium', ['weight'] = 100, ['type'] = 'item', ['image'] = 'aluminum.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Nice piece of metal that you can probably use for something', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['aluminumoxide'] = {['name'] = 'aluminumoxide', ['label'] = 'Aluminium Powder', ['weight'] = 100, ['type'] = 'item', ['image'] = 'aluminumoxide.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Some powder to mix with', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['iron'] = {['name'] = 'iron', ['label'] = 'Iron', ['weight'] = 100, ['type'] = 'item', ['image'] = 'iron.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Handy piece of metal that you can probably use for something', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['ironoxide'] = {['name'] = 'ironoxide', ['label'] = 'Iron Powder', ['weight'] = 100, ['type'] = 'item', ['image'] = 'ironoxide.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = {accept = {'aluminumoxide', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false}, reward = 'thermite', anim = {['dict'] = 'anim@amb@business@weed@weed_inspecting_high_dry@', ['lib'] = 'weed_inspecting_high_base_inspector', ['text'] = 'Mixing powder..', ['timeOut'] = 10000}, ['created'] = nil, ["decay"] = 0.0}, ['description'] = 'Some powder to mix with.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['steel'] = {['name'] = 'steel', ['label'] = 'Steel', ['weight'] = 100, ['type'] = 'item', ['image'] = 'steel.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Nice piece of metal that you can probably use for something', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['rubber'] = {['name'] = 'rubber', ['label'] = 'Rubber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'rubber.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Rubber, I believe you can make your own rubber ducky with it :D', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['glass'] = {['name'] = 'glass', ['label'] = 'Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'glass.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'It is very fragile, watch out', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Tools
|
||
|
['lockpick'] = {['name'] = 'lockpick', ['label'] = 'Lockpick', ['weight'] = 300, ['type'] = 'item', ['image'] = 'lockpick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = {accept = {'screwdriverset', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false}, reward = 'advancedlockpick', anim = {['dict'] = 'anim@amb@business@weed@weed_inspecting_high_dry@', ['lib'] = 'weed_inspecting_high_base_inspector', ['text'] = 'Crafting lockpick', ['timeOut'] = 7500, }, ['created'] = nil, ["decay"] = 0.0}, ['description'] = 'Very useful if you lose your keys a lot.. or if you want to use it for something else...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['advancedlockpick'] = {['name'] = 'advancedlockpick', ['label'] = 'Advanced Lockpick', ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_advanced-lockpick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'If you lose your keys a lot this is very useful... Also useful to open your beers', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['security_system_device'] = {['name'] = 'security_system_device', ['label'] = 'Security Hacking Device', ['weight'] = 100, ['type'] = 'item', ['image'] = 'security_device.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'This device look sus', ["created"] = nil, ["decay"] = 0},
|
||
|
['electronickit'] = {['name'] = 'electronickit', ['label'] = 'Electronic Kit', ['weight'] = 100, ['type'] = 'item', ['image'] = 'electronickit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = {accept = {'gatecrack', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false}, reward = 'trojan_usb', anim = nil, ['created'] = nil, ["decay"] = 0.0}, ['description'] = 'If you\'ve always wanted to build a robot you can maybe start here. Maybe you\'ll be the new Elon Musk?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['gatecrack'] = {['name'] = 'gatecrack', ['label'] = 'Gatecrack', ['weight'] = 500, ['type'] = 'item', ['image'] = 'usb_device.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Handy software to tear down some fences', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['thermite'] = {['name'] = 'thermite', ['label'] = 'Thermite', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'thermite.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sometimes you\'d wish for everything to burn', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['trojan_usb'] = {['name'] = 'trojan_usb', ['label'] = 'Trojan USB', ['weight'] = 500, ['type'] = 'item', ['image'] = 'usb_device.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Handy software to shut down some systems', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['screwdriverset'] = {['name'] = 'screwdriverset', ['label'] = 'Toolkit', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'screwdriverset.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Very useful to screw... screws...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['drill'] = {['name'] = 'drill', ['label'] = 'Drill', ['weight'] = 15000, ['type'] = 'item', ['image'] = 'drill.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'The real deal...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["toolbox"] = {["name"] = "toolbox", ["label"] = "Toolbox", ["weight"] = 1000, ["type"] = "item", ["image"] = "toolbox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Needed for Performance part removal", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- Vehicle Tools
|
||
|
['nitrous'] = {['name'] = 'nitrous', ['label'] = 'Nitrous', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'nitrous.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Gas Gas GAAAAAS!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['emptynitrous'] = {['name'] = 'emptynitrous', ['label'] = 'Empty Bottle', ['weight'] = 100, ['type'] = 'item', ['image'] = 'emptynitrous.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Slow Slow SLOOOOW!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["redusb"] = {["name"] = "redusb", ["label"] = "Red USB", ['weight'] = 100, ["type"] = "item", ["image"] = "redusb.png", ["unique"] = true, ["useable"] = false, ['shouldClose'] = false, ["combinable"] = nil, ["description"] = "A USB marked for police seizure", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["racingusb"] = {["name"] = "racingusb", ["label"] = "Racing USB", ['weight'] = 100, ["type"] = "item", ["image"] = "racingusb.png", ["unique"] = true, ["useable"] = false, ['shouldClose'] = false, ["combinable"] = nil, ["description"] = "A USB marked for police seizure", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["racingcreator"] = {["name"] = "racingcreator", ["label"] = "Racing Creator", ['weight'] = 100, ["type"] = "item", ["image"] = "racingcreator.png", ["unique"] = true, ["useable"] = false, ['shouldClose'] = false, ["combinable"] = nil, ["description"] = "A USB marked for police seizure", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['repairkit'] = {['name'] = 'repairkit', ['label'] = 'Repairkit', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'repairkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice toolbox with stuff to repair your vehicle', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['advancedrepairkit'] = {['name'] = 'advancedrepairkit', ['label'] = 'Advanced Repairkit', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'advancedkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice toolbox with stuff to repair your vehicle', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cleaningkit'] = {['name'] = 'cleaningkit', ['label'] = 'Cleaning Kit', ['weight'] = 250, ['type'] = 'item', ['image'] = 'cleaningkit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A microfiber cloth with some soap will let your car sparkle again!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['tunerlaptop'] = {['name'] = 'tunerlaptop', ['label'] = 'Tuner Chip', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'np_tuner.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'With this tunerchip you can get your car on steroids... If you know what you\'re doing', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['harness'] = {['name'] = 'harness', ['label'] = 'Race Harness', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'harness.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Racing Harness so no matter what you stay in the car', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['jerry_can'] = {['name'] = 'jerry_can', ['label'] = 'Jerrycan 20L', ['weight'] = 15000, ['type'] = 'item', ['image'] = 'jerry_can.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A can full of Fuel', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['dragy'] = {['name'] = 'dragy', ['label'] = 'Dragy', ['weight'] = 10, ['type'] = 'item', ['image'] = 'dragy.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'How fast are U ?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Medication
|
||
|
['firstaid'] = {['name'] = 'firstaid', ['label'] = 'First Aid', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'firstaid.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'You can use this First Aid kit to get people back on their feet', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['bandage'] = {['name'] = 'bandage', ['label'] = 'Bandage', ['weight'] = 500, ['type'] = 'item', ['image'] = 'bandage.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bandage works every time', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['ifaks'] = {['name'] = 'ifaks', ['label'] = 'ifaks', ['weight'] = 200, ['type'] = 'item', ['image'] = 'ifak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'ifaks for healing and a complete stress remover.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['painkillers'] = {['name'] = 'painkillers', ['label'] = 'Painkillers', ['weight'] = 250, ['type'] = 'item', ['image'] = 'painkillers.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For pain you can\'t stand anymore, take this pill that\'d make you feel great again', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['walkstick'] = {['name'] = 'walkstick', ['label'] = 'Walking Stick', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'walkstick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Walking stick for ya\'ll grannies out there.. HAHA', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['medicalbag'] = {['name'] = 'medicalbag', ['label'] = 'Medical Bag', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'np_medbag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its a prop, wow?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Communication
|
||
|
['phone'] = {['name'] = 'phone', ['label'] = 'Phone', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'black_phone.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Neat phone ya got there', ['created'] = nil, ['decay'] = 28},
|
||
|
['radio'] = {['name'] = 'radio', ['label'] = 'Radio', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'np_radio.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'You can communicate with this through a signal', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['iphone'] = {['name'] = 'iphone', ['label'] = 'iPhone', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'iphone.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Very expensive phone', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['samsungphone'] = {['name'] = 'samsungphone', ['label'] = 'Samsung S10', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'samsungphone.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Very expensive phone', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['laptop'] = {['name'] = 'laptop', ['label'] = 'Pixel Laptop', ['weight'] = 3000, ['type'] = 'item', ['image'] = 'pixellaptop.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Laptop used for many things', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
['tablet'] = {['name'] = 'tablet', ['label'] = 'Tablet', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'tablet.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Expensive tablet', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['mdt'] = {['name'] = 'mdt', ['label'] = 'MDT', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'mdt.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Expensive mdt', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['encryptedtablet'] = {['name'] = 'encryptedtablet', ['label'] = 'Encrypted Tablet', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'tablet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Expensive tablet', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
['fitbit'] = {['name'] = 'fitbit', ['label'] = 'Fitbit', ['weight'] = 500, ['type'] = 'item', ['image'] = 'fitbit.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'I like fitbit', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['watch_black'] = {['name'] = 'watch_black', ['label'] = 'Apple Watch Black', ['weight'] = 500, ['type'] = 'item', ['image'] = 'watch_black.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'I like Apple', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['watch_white'] = {['name'] = 'watch_white', ['label'] = 'Apple Watch White', ['weight'] = 500, ['type'] = 'item', ['image'] = 'watch_white.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'I like Apple', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
['radioscanner'] = {['name'] = 'radioscanner', ['label'] = 'Radio Scanner', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'radioscanner.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'With this you can get some police alerts. Not 100% effective however', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['pinger'] = {['name'] = 'pinger', ['label'] = 'Pinger', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'pinger.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'With a pinger and your phone you can send out your location', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cryptostick'] = {['name'] = 'cryptostick', ['label'] = 'Crypto Stick', ['weight'] = 200, ['type'] = 'item', ['image'] = 'cryptostick.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Why would someone ever buy money that doesn\'t exist.. How many would it contain..?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Theft and Jewelry
|
||
|
['rolex'] = {['name'] = 'rolex', ['label'] = 'Golden Watch', ['weight'] = 500, ['type'] = 'item', ['image'] = 'rolex.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A golden watch seems like the jackpot to me!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['diamond_ring'] = {['name'] = 'diamond_ring', ['label'] = 'Diamond Ring', ['weight'] = 500, ['type'] = 'item', ['image'] = 'diamond_ring.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A diamond ring seems like the jackpot to me!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['goldchain'] = {['name'] = 'goldchain', ['label'] = 'Golden Chain', ['weight'] = 500, ['type'] = 'item', ['image'] = 'goldchain.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A golden chain seems like the jackpot to me!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['10kgoldchain'] = {['name'] = '10kgoldchain', ['label'] = '10k Gold Chain', ['weight'] = 500, ['type'] = 'item', ['image'] = '10kgoldchain.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '10 carat golden chain', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['goldbar'] = {['name'] = 'goldbar', ['label'] = 'Gold Bar', ['weight'] = 100, ['type'] = 'item', ['image'] = 'goldbar.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Looks pretty expensive to me', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Cops Tools
|
||
|
['armor'] = {['name'] = 'armor', ['label'] = 'Armor', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'armor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some protection won\'t hurt... right?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['heavyarmor'] = {['name'] = 'heavyarmor', ['label'] = 'Heavy Armor', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'armor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Some protection won\'t hurt... right?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['handcuffs'] = {['name'] = 'handcuffs', ['label'] = 'Handcuffs', ['weight'] = 100, ['type'] = 'item', ['image'] = 'handcuffs.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Comes in handy when people misbehave. Maybe it can be used for something else?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["handcuffkey"] = {["name"] = "handcuffkey", ["label"] = "Handcuff Key", ["weight"] = 100, ["type"] = "item", ["image"] = "np_mobilecratekey.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Good for getting a person out of cuffs", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['police_stormram'] = {['name'] = 'police_stormram', ['label'] = 'Stormram', ['weight'] = 18000, ['type'] = 'item', ['image'] = 'police_stormram.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice tool to break into doors', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['empty_evidence_bag'] = {['name'] = 'empty_evidence_bag', ['label'] = 'Empty Evidence Bag', ['weight'] = 100, ['type'] = 'item', ['image'] = 'evidence.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Used a lot to keep DNA from blood, bullet shells and more', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['filled_evidence_bag'] = {['name'] = 'filled_evidence_bag', ['label'] = 'Evidence Bag', ['weight'] = 200, ['type'] = 'item', ['image'] = 'evidence.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A filled evidence bag to see who committed the crime >:(', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Firework Tools
|
||
|
['firework1'] = {['name'] = 'firework1', ['label'] = '2Brothers', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'firework1.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['firework2'] = {['name'] = 'firework2', ['label'] = 'Poppelers', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'firework2.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['firework3'] = {['name'] = 'firework3', ['label'] = 'WipeOut', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'firework3.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['firework4'] = {['name'] = 'firework4', ['label'] = 'Weeping Willow', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'firework4.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fireworks', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Sea Tools
|
||
|
['dendrogyra_coral'] = {['name'] = 'dendrogyra_coral', ['label'] = 'Dendrogyra', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'dendrogyra_coral.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its also known as pillar coral', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['antipatharia_coral'] = {['name'] = 'antipatharia_coral', ['label'] = 'Antipatharia', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'antipatharia_coral.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its also known as black corals or thorn corals', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['diving_gear'] = {['name'] = 'diving_gear', ['label'] = 'Diving Gear', ['weight'] = 20000, ['type'] = 'item', ['image'] = 'diving_gear.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An oxygen tank and a rebreather', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
|
||
|
-- CASINO STUFF
|
||
|
["casino_greenchip"] = {["name"] = "casino_greenchip", ["label"] = "Casino Chip", ["weight"] = 1, ["type"] = "item", ["image"] = "np_green-chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Chip", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_redchip"] = {["name"] = "casino_redchip", ["label"] = "Casino Chip", ["weight"] = 1, ["type"] = "item", ["image"] = "np_red-chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Inside Track Chip", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_whitechip"] = {["name"] = "casino_whitechip", ["label"] = "Casino Chip", ["weight"] = 1, ["type"] = "item", ["image"] = "np_white-chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Slot Machine Chip", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_bluechip"] = {["name"] = "casino_bluechip", ["label"] = "Casino Chip", ["weight"] = 1, ["type"] = "item", ["image"] = "np_blue-chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Roulette Chip", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_blackchip"] = {["name"] = "casino_blackchip", ["label"] = "Casino Chip", ["weight"] = 1, ["type"] = "item", ["image"] = "np_black-chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Blackjack Chip", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_goldchip"] = {["name"] = "casino_goldchip", ["label"] = "Casino Chip", ["weight"] = 1, ["type"] = "item", ["image"] = "np_gold-chip.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Golden Chip", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_member"] = {["name"] = "casino_member", ["label"] = "Casino Membership", ["weight"] = 500, ["type"] = "item", ["image"] = "np_casino_member.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Member Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_vip"] = {["name"] = "casino_vip", ["label"] = "V.I.P Membership", ["weight"] = 500, ["type"] = "item", ["image"] = "np_casino_high_roller.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino V.I.P Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_panther"] = {["name"] = "casino_panther", ["label"] = "Panther", ["weight"] = 15000, ["type"] = "item", ["image"] = "np_casino_panther.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Someones personal panther... you are getting into trouble...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_soap"] = {["name"] = "casino_soap", ["label"] = "Soap", ["weight"] = 1000, ["type"] = "item", ["image"] = "np_casino_soap.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino branded soap.. this should get you squeaky clean.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["casino_goldcoin"] = {["name"] = "casino_goldcoin", ["label"] = "Gold Coin", ["weight"] = 100, ["type"] = "item", ["image"] = "np_casinogoldcoin.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Diamond Casino Gold Coin.. could be worth something.. or not.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
|
||
|
-- Other Tools
|
||
|
['casinochips'] = {['name'] = 'casinochips', ['label'] = 'Casino Chips', ['weight'] = 1, ['type'] = 'item', ['image'] = 'np_green-chip.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Lucky Wheel Chip.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['stickynote'] = {['name'] = 'stickynote', ['label'] = 'Sticky note', ['weight'] = 10, ['type'] = 'item', ['image'] = 'stickynote.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Sometimes handy to remember something :)', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['moneybag'] = {['name'] = 'moneybag', ['label'] = 'Money Bag', ['weight'] = 10, ['type'] = 'item', ['image'] = 'moneybag.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bag with cash', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['parachute'] = {['name'] = 'parachute', ['label'] = 'Parachute', ['weight'] = 8000, ['type'] = 'item', ['image'] = 'parachute.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The sky is the limit! Woohoo!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['binoculars'] = {['name'] = 'binoculars', ['label'] = 'Binoculars', ['weight'] = 600, ['type'] = 'item', ['image'] = 'binoculars.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sneaky Breaky...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['snowball'] = {['name'] = 'snowball', ['label'] = 'Snowball', ['weight'] = 10, ['type'] = 'item', ['image'] = 'snowball.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Should have catched it :D', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['lighter'] = {['name'] = 'lighter', ['label'] = 'Lighter', ['weight'] = 10, ['type'] = 'item', ['image'] = 'lighter.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'On new years eve a nice fire to stand next to', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['certificate'] = {['name'] = 'certificate', ['label'] = 'Certificate', ['weight'] = 10, ['type'] = 'item', ['image'] = 'certificate.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Certificate that proves you own business', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['markedbills'] = {['name'] = 'markedbills', ['label'] = 'Marked Money', ['weight'] = 10, ['type'] = 'item', ['image'] = 'markedbills.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Money?', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['printerdocument'] = {['name'] = 'printerdocument', ['label'] = 'Document', ['weight'] = 500, ['type'] = 'item', ['image'] = 'printerdocument.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A nice document', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- CUSTOM SHIT BELOW --
|
||
|
-- BOOSTING
|
||
|
["boostinglaptop"] = {["name"] = "boostinglaptop", ["label"] = "Boosting Laptop", ["weight"] = 1000, ["type"] = "item", ["image"] = "boostinglaptop.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A laptop used for boosting contracts.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["boostingdisabler"] = {["name"] = "boostingdisabler", ["label"] = "Tracking Disabler", ["weight"] = 1000, ["type"] = "item", ["image"] = "boostingdisabler.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "This small tool can disable these pesky trackers.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
--casino heist
|
||
|
['casino_usb1'] = {['name'] = 'casino_usb1', ['label'] = 'USB Device', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_usb.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A USB Device', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_usb2'] = {['name'] = 'casino_usb2', ['label'] = 'USB Device', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_usb.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A USB Device', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_magnet'] = {['name'] = 'casino_magnet', ['label'] = 'High Powered Magnet', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_magnet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A high powered magnet', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_accesscode1'] = {['name'] = 'casino_accesscode1', ['label'] = 'Casino Access Codes', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_accesscode.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Access Codes', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_accesscode2'] = {['name'] = 'casino_accesscode2', ['label'] = 'Casino Access Codes', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_accesscode.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Access Codes', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_keycard'] = {['name'] = 'casino_keycard', ['label'] = 'Executive Keycard', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_keycard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grants unrestricted access..', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_green'] = {['name'] = 'casino_green', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_green.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Green Laptop', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_red'] = {['name'] = 'casino_red', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_red.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Red Laptop', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_blue'] = {['name'] = 'casino_blue', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_blue.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Blue Laptop', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_gold'] = {['name'] = 'casino_gold', ['label'] = 'Laptop', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'casino_gold.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Gold Laptop', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_bag'] = {['name'] = 'casino_bag', ['label'] = 'Duffel Bag', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_bag.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A Black Duffel Bag', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_vaultcode'] = {['name'] = 'casino_vaultcode', ['label'] = 'Casino Vault Codes', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_accesscode.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Vault Access Codes', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--casiuno shit
|
||
|
['krugerrand'] = {['name'] = 'krugerrand', ['label'] = 'Krugerrand', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'krugerrand.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A coin made from gold.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_soap'] = {['name'] = 'casino_soap', ['label'] = 'Soap', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'casino_soap.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Diamond Casino Hotel branded soap', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_towel'] = {['name'] = 'casino_towel', ['label'] = 'Towel', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'casino_towel.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Diamond Casino Hotel branded towels', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_shampoo'] = {['name'] = 'casino_shampoo', ['label'] = 'Shampoo', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'casino_shampoo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Diamond Casino Hotel branded shampoo', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_showergel'] = {['name'] = 'casino_showergel', ['label'] = 'Showergel', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'casino_showergel.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Diamond Casino Hotel branded showergel', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['casino_membercard'] = {['name'] = 'casino_membercard', ['label'] = 'Membercard', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'casino_membercard.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Diamond Casino Membership Card', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
|
||
|
-- VOTING
|
||
|
['np_voted_sticker'] = {['name'] = 'np_voted_sticker', ['label'] = 'Voting Sticker', ['weight'] = 10, ['type'] = 'item', ['image'] = 'np_voted_sticker.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'You have voted!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Magic
|
||
|
['bookofmagic'] = {['name'] = 'bookofmagic', ['label'] = 'Book of Magic', ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_spellblue.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['lightningbolt'] = {['name'] = 'lightningbolt', ['label'] = 'Lightning Bolt', ['weight'] = 500, ['type'] = 'item', ['image'] = 'lightningbolt.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['bottleofforce'] = {['name'] = 'bottleofforce', ['label'] = 'Bottle of Force', ['weight'] = 500, ['type'] = 'item', ['image'] = 'bottleofforce.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['begonepotion'] = {['name'] = 'begonepotion', ['label'] = 'Be Gone Potion', ['weight'] = 500, ['type'] = 'item', ['image'] = 'begonepotion.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['healingstones'] = {['name'] = 'healingstones', ['label'] = 'Healing Stones', ['weight'] = 500, ['type'] = 'item', ['image'] = 'healingstones.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['bookofdimensions'] = {['name'] = 'bookofdimensions', ['label'] = 'Booking of Dimensions', ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_spellnormal.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['bookofbadmagic'] = {['name'] = 'bookofbadmagic', ['label'] = 'Book of Bad Magic', ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_spellred.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['bookofcurses'] = {['name'] = 'bookofcurses', ['label'] = 'Book of Curses', ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_spellnormal.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['potionofchanges'] = {['name'] = 'potionofchanges', ['label'] = 'Potion of Changes', ['weight'] = 500, ['type'] = 'item', ['image'] = 'potionofchanges.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['gravitygone'] = {['name'] = 'gravitygone', ['label'] = 'Gravity Gone', ['weight'] = 500, ['type'] = 'item', ['image'] = 'gravitygone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['phasepotion'] = {['name'] = 'phasepotion', ['label'] = 'Phase Potion', ['weight'] = 500, ['type'] = 'item', ['image'] = 'phasepotion.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['bookofwind'] = {['name'] = 'bookofwind', ['label'] = 'Book of Wind', ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_spellnormal.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Magic Item', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- METH TABLE
|
||
|
["methtable"] = {["name"] = "methtable", ["label"] = "Meth Table", ["weight"] = 2000, ["type"] = "item", ["image"] = "methtable.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A Table", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["methbag"] = {["name"] = "methbag", ["label"] = "Meth Bag", ["weight"] = 1000, ["type"] = "item", ["image"] = "meth10g.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Meth Bag", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
['grapplegun'] = {['name'] = 'grapplegun', ['label'] = 'Grapple Gun', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'np_grapple.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Become Batman', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- WEARABLE MASKS / BANDANAS
|
||
|
["bloodsbandana"] = {["name"] = "bloodsbandana", ["label"] = "Bloods Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "bloodsbandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Bloods Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["greenbandana"] = {["name"] = "greenbandana", ["label"] = "GSF Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "greenbandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "GSF Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["ballasbandana"] = {["name"] = "ballasbandana", ["label"] = "Ballas Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "ballasbandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ballas Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["vagosbandana"] = {["name"] = "vagosbandana", ["label"] = "Vagos Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "vagosbandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Vagos Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["cripsbandana"] = {["name"] = "cripsbandana", ["label"] = "Crip Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "cripsbandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Crips Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["whitebandana"] = {["name"] = "whitebandana", ["label"] = "White Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "whitebandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "White Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["blackbandana"] = {["name"] = "blackbandana", ["label"] = "Black Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "blackbandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Black Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["orangebandana"] = {["name"] = "orangebandana", ["label"] = "Orange Bandana", ["weight"] = 1000, ["type"] = "item", ["image"] = "orangebandana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Orange Gang Bandana", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- -- JIMS MECHANIC
|
||
|
["mechanic_tools"] = {["name"] = "mechanic_tools", ["label"] = "Mechanic tools", ["weight"] = 0, ["type"] = "item", ["image"] = "mechanic_tools.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Needed for vehicle repairs", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["toolbox"] = {["name"] = "toolbox", ["label"] = "Toolbox", ["weight"] = 0, ["type"] = "item", ["image"] = "toolbox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Needed for Performance part removal", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ducttape"] = {["name"] = "ducttape", ["label"] = "Duct Tape", ["weight"] = 0, ["type"] = "item", ["image"] = "bodyrepair.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Good for quick fixes", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["mechboard"] = {["name"] = "mechboard", ["label"] = "Mechanic Sheet", ["weight"] = 0, ["type"] = "item", ["image"] = "mechboard.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Performance
|
||
|
["turbo"] = {["name"] = "turbo", ["label"] = "Supercharger Turbo", ["weight"] = 0, ["type"] = "item", ["image"] = "turbo.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Who doesn't need a 65mm Turbo??", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["car_armor"] = {["name"] = "car_armor", ["label"] = "Vehicle Armor", ["weight"] = 0, ["type"] = "item", ["image"] = "armour.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["nos"] = {["name"] = "nos", ["label"] = "NOS Bottle", ["weight"] = 0, ["type"] = "item", ["image"] = "nos.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "A full bottle of NOS", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["noscan"] = {["name"] = "noscan", ["label"] = "Empty NOS Bottle", ["weight"] = 0, ["type"] = "item", ["image"] = "noscan.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["description"] = "An Empty bottle of NOS", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["noscolour"] = {["name"] = "noscolour", ["label"] = "NOS Colour Injector", ["weight"] = 0, ["type"] = "item", ["image"] = "noscolour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Make that purge spray", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["engine1"] = {["name"] = "engine1", ["label"] = "Tier 1 Engine", ["weight"] = 0, ["type"] = "item", ["image"] = "engine1.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["engine2"] = {["name"] = "engine2", ["label"] = "Tier 2 Engine", ["weight"] = 0, ["type"] = "item", ["image"] = "engine2.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["engine3"] = {["name"] = "engine3", ["label"] = "Tier 3 Engine", ["weight"] = 0, ["type"] = "item", ["image"] = "engine3.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["engine4"] = {["name"] = "engine4", ["label"] = "Tier 4 Engine", ["weight"] = 0, ["type"] = "item", ["image"] = "engine4.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["engine5"] = {["name"] = "engine5", ["label"] = "Tier 5 Engine", ["weight"] = 0, ["type"] = "item", ["image"] = "engine5.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["transmission1"] = {["name"] = "transmission1", ["label"] = "Tier 1 Transmission", ["weight"] = 0, ["type"] = "item", ["image"] = "transmission1.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = ""},
|
||
|
["transmission2"] = {["name"] = "transmission2", ["label"] = "Tier 2 Transmission", ["weight"] = 0, ["type"] = "item", ["image"] = "transmission2.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["transmission3"] = {["name"] = "transmission3", ["label"] = "Tier 3 Transmission", ["weight"] = 0, ["type"] = "item", ["image"] = "transmission3.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["transmission4"] = {["name"] = "transmission4", ["label"] = "Tier 4 Transmission", ["weight"] = 0, ["type"] = "item", ["image"] = "transmission4.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["brakes1"] = {["name"] = "brakes1", ["label"] = "Tier 1 Brakes", ["weight"] = 0, ["type"] = "item", ["image"] = "brakes1.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["brakes2"] = {["name"] = "brakes2", ["label"] = "Tier 2 Brakes", ["weight"] = 0, ["type"] = "item", ["image"] = "brakes2.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["brakes3"] = {["name"] = "brakes3", ["label"] = "Tier 3 Brakes", ["weight"] = 0, ["type"] = "item", ["image"] = "brakes3.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["suspension1"] = {["name"] = "suspension1", ["label"] = "Tier 1 Suspension", ["weight"] = 0, ["type"] = "item", ["image"] = "suspension1.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["suspension2"] = {["name"] = "suspension2", ["label"] = "Tier 2 Suspension", ["weight"] = 0, ["type"] = "item", ["image"] = "suspension2.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["suspension3"] = {["name"] = "suspension3", ["label"] = "Tier 3 Suspension", ["weight"] = 0, ["type"] = "item", ["image"] = "suspension3.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["suspension4"] = {["name"] = "suspension4", ["label"] = "Tier 4 Suspension", ["weight"] = 0, ["type"] = "item", ["image"] = "suspension4.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["suspension5"] = {["name"] = "suspension5", ["label"] = "Tier 5 Suspension", ["weight"] = 0, ["type"] = "item", ["image"] = "suspension5.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["bprooftires"] = {["name"] = "bprooftires", ["label"] = "Bulletproof Tires", ["weight"] = 0, ["type"] = "item", ["image"] = "bprooftires.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["drifttires"] = {["name"] = "drifttires", ["label"] = "Drift Tires", ["weight"] = 0, ["type"] = "item", ["image"] = "drifttires.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Cosmetics
|
||
|
["underglow_controller"] = {["name"] = "underglow_controller", ["label"] = "Neon Controller", ["weight"] = 0, ["type"] = "item", ["image"] = "underglow_controller.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["description"] = "RGB LED Vehicle Remote", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["headlights"] = {["name"] = "headlights", ["label"] = "Xenon Headlights", ["weight"] = 0, ["type"] = "item", ["image"] = "headlights.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "8k HID headlights", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["tint_supplies"] = {["name"] = "tint_supplies", ["label"] = "Tint Supplies", ["weight"] = 0, ["type"] = "item", ["image"] = "tint_supplies.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["description"] = "Supplies for window tinting", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["customplate"] = {["name"] = "customplate", ["label"] = "Customized Plates", ["weight"] = 0, ["type"] = "item", ["image"] = "plate.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["hood"] = {["name"] = "hood", ["label"] = "Vehicle Hood", ["weight"] = 0, ["type"] = "item", ["image"] = "hood.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["roof"] = {["name"] = "roof", ["label"] = "Vehicle Roof", ["weight"] = 0, ["type"] = "item", ["image"] = "roof.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["spoiler"] = {["name"] = "spoiler", ["label"] = "Vehicle Spoiler", ["weight"] = 0, ["type"] = "item", ["image"] = "spoiler.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bumper"] = {["name"] = "bumper", ["label"] = "Vehicle Bumper", ["weight"] = 0, ["type"] = "item", ["image"] = "bumper.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["skirts"] = {["name"] = "skirts", ["label"] = "Vehicle Skirts", ["weight"] = 0, ["type"] = "item", ["image"] = "skirts.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["exhaust"] = {["name"] = "exhaust", ["label"] = "Vehicle Exhaust", ["weight"] = 0, ["type"] = "item", ["image"] = "exhaust.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["seat"] = {["name"] = "seat", ["label"] = "Seat Cosmetics", ["weight"] = 0, ["type"] = "item", ["image"] = "seat.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["rollcage"] = {["name"] = "rollcage", ["label"] = "Roll Cage", ["weight"] = 0, ["type"] = "item", ["image"] = "rollcage.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["rims"] = {["name"] = "rims", ["label"] = "Custom Wheel Rims", ["weight"] = 0, ["type"] = "item", ["image"] = "rims.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["livery"] = {["name"] = "livery", ["label"] = "Livery Roll", ["weight"] = 0, ["type"] = "item", ["image"] = "livery.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["paintcan"] = {["name"] = "paintcan", ["label"] = "Vehicle Spray Can", ["weight"] = 0, ["type"] = "item", ["image"] = "spraycan.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["tires"] = {["name"] = "tires", ["label"] = "Drift Smoke Tires", ["weight"] = 0, ["type"] = "item", ["image"] = "tires.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["horn"] = {["name"] = "horn", ["label"] = "Custom Vehicle Horn", ["weight"] = 0, ["type"] = "item", ["image"] = "horn.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["internals"] = {["name"] = "internals", ["label"] = "Internal Cosmetics", ["weight"] = 0, ["type"] = "item", ["image"] = "internals.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["externals"] = {["name"] = "externals", ["label"] = "Exterior Cosmetics", ["weight"] = 0, ["type"] = "item", ["image"] = "mirror.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Repair Parts
|
||
|
["newoil"] = {["name"] = "newoil", ["label"] = "Car Oil", ["weight"] = 0, ["type"] = "item", ["image"] = "caroil.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sparkplugs"] = {["name"] = "sparkplugs", ["label"] = "Spark Plugs", ["weight"] = 0, ["type"] = "item", ["image"] = "sparkplugs.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["carbattery"] = {["name"] = "carbattery", ["label"] = "Car Battery", ["weight"] = 0, ["type"] = "item", ["image"] = "carbattery.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["axleparts"] = {["name"] = "axleparts", ["label"] = "Axle Parts", ["weight"] = 0, ["type"] = "item", ["image"] = "axleparts.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sparetire"] = {["name"] = "sparetire", ["label"] = "Spare Tire", ["weight"] = 0, ["type"] = "item", ["image"] = "sparetire.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["description"] = "", ["created"] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- RANDOM SCRAP ITEMS RECYCLE CENTER
|
||
|
["gascan"] = {["name"] = "gascan", ["label"] = "Gas Canister", ["weight"] = 500, ["type"] = "item", ["image"] = "gascan.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A useful gas canister that you can use for something", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["cloth"] = {["name"] = "cloth", ["label"] = "Cloth", ["weight"] = 100, ["type"] = "item", ["image"] = "clothe.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A piece of cloth that you can probably use for something", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- POKEMON
|
||
|
["boosterbox"] = {["name"] = "boosterbox", ["label"] = "Boosterbox", ["weight"] = 200, ["type"] = "item", ["image"] = "boosterBox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Box Of Card Packs", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["boosterpack"] = {["name"] = "boosterpack", ["label"] = "Boosterpack", ["weight"] = 0, ["type"] = "item", ["image"] = "boosterPack.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Pack of Cards", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["abra"] = {["name"] = "abra", ["label"] = "Abra", ["weight"] = 0, ["type"] = "item", ["image"] = "abra.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Marsh Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["aerodactyl"] = {["name"] = "aerodactyl", ["label"] = "Aerodactyl", ["weight"] = 0, ["type"] = "item", ["image"] = "aerodactyl.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["alakazam"] = {["name"] = "alakazam", ["label"] = "Alakazam", ["weight"] = 0, ["type"] = "item", ["image"] = "alakazam.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Marsh Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["arbok"] = {["name"] = "arbok", ["label"] = "Arbok", ["weight"] = 0, ["type"] = "item", ["image"] = "arbok.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["arcanine"] = {["name"] = "arcanine", ["label"] = "Arcanine", ["weight"] = 0, ["type"] = "item", ["image"] = "arcanine.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Volcano Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["articuno"] = {["name"] = "articuno", ["label"] = "Articuno", ["weight"] = 0, ["type"] = "item", ["image"] = "articuno.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["beedrill"] = {["name"] = "beedrill", ["label"] = "Beedrill", ["weight"] = 0, ["type"] = "item", ["image"] = "beedrill.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["bellsprout"] = {["name"] = "bellsprout", ["label"] = "Bellsprout", ["weight"] = 0, ["type"] = "item", ["image"] = "bellsprout.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Rainbow Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["blastoise"] = {["name"] = "blastoise", ["label"] = "Blastoise", ["weight"] = 0, ["type"] = "item", ["image"] = "blastoise.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Cascade Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["boulderbadge"] = {["name"] = "boulderbadge", ["label"] = "boulderbadge", ["weight"] = 0, ["type"] = "item", ["image"] = "boulderBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/8 for Trophy Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["butterfree"] = {["name"] = "butterfree", ["label"] = "Butterfree", ["weight"] = 0, ["type"] = "item", ["image"] = "butterfree.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["cascadebadge"] = {["name"] = "cascadeBadge", ["label"] = "CascadeBadge", ["weight"] = 0, ["type"] = "item", ["image"] = "cascadeBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/8 for Trophy Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["caterpie"] = {["name"] = "caterpie", ["label"] = "Caterpie", ["weight"] = 0, ["type"] = "item", ["image"] = "caterpie.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["chansey"] = {["name"] = "chansey", ["label"] = "Chansey", ["weight"] = 0, ["type"] = "item", ["image"] = "chansey.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["charizard"] = {["name"] = "charizard", ["label"] = "Charizard", ["weight"] = 0, ["type"] = "item", ["image"] = "charizard.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Volcano Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["charmander"] = {["name"] = "charmander", ["label"] = "Charmander", ["weight"] = 0, ["type"] = "item", ["image"] = "charmander.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["charmeleon"] = {["name"] = "charmeleon", ["label"] = "Charmeleon", ["weight"] = 0, ["type"] = "item", ["image"] = "charmeleon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["clefable"] = {["name"] = "clefable", ["label"] = "Clefable", ["weight"] = 0, ["type"] = "item", ["image"] = "clefable.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["clefairy"] = {["name"] = "clefairy", ["label"] = "Clefairy", ["weight"] = 0, ["type"] = "item", ["image"] = "clefairy.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["cloyster"] = {["name"] = "cloyster", ["label"] = "Cloyster", ["weight"] = 0, ["type"] = "item", ["image"] = "cloyster.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["cubone"] = {["name"] = "cubone", ["label"] = "Cubone", ["weight"] = 0, ["type"] = "item", ["image"] = "cubone.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["dewgong"] = {["name"] = "dewgong", ["label"] = "Dewgong", ["weight"] = 0, ["type"] = "item", ["image"] = "dewgong.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["diglett"] = {["name"] = "diglett", ["label"] = "Diglett", ["weight"] = 0, ["type"] = "item", ["image"] = "diglett.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["ditto"] = {["name"] = "ditto", ["label"] = "Ditto", ["weight"] = 0, ["type"] = "item", ["image"] = "ditto.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["dodrio"] = {["name"] = "dodrio", ["label"] = "Dodrio", ["weight"] = 0, ["type"] = "item", ["image"] = "dodrio.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["doduo"] = {["name"] = "doduo", ["label"] = "Doduo", ["weight"] = 0, ["type"] = "item", ["image"] = "doduo.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["dragonair"] = {["name"] = "dragonair", ["label"] = "Dragonair", ["weight"] = 0, ["type"] = "item", ["image"] = "dragonair.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["dragonite"] = {["name"] = "dragonite", ["label"] = "Dragonite", ["weight"] = 0, ["type"] = "item", ["image"] = "dragonite.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["dratini"] = {["name"] = "dratini", ["label"] = "Dratini", ["weight"] = 0, ["type"] = "item", ["image"] = "dratini.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["drowzee"] = {["name"] = "drowzee", ["label"] = "Drowzee", ["weight"] = 0, ["type"] = "item", ["image"] = "drowzee.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["dugtrio"] = {["name"] = "dugtrio", ["label"] = "Dugtrio", ["weight"] = 0, ["type"] = "item", ["image"] = "dugtrio.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Earth Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["earthbadge"] = {["name"] = "earthbadge", ["label"] = "Earth Badge", ["weight"] = 0, ["type"] = "item", ["image"] = "earthBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "8/8 for Trophy Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["eevee"] = {["name"] = "eevee", ["label"] = "Eevee", ["weight"] = 0, ["type"] = "item", ["image"] = "eevee.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["ekans"] = {["name"] = "ekans", ["label"] = "Ekans", ["weight"] = 0, ["type"] = "item", ["image"] = "ekans.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["electabuzz"] = {["name"] = "electabuzz", ["label"] = "Electabuzz", ["weight"] = 0, ["type"] = "item", ["image"] = "electabuzz.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Thunder Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["electrode"] = {["name"] = "electrode", ["label"] = "Electrode", ["weight"] = 0, ["type"] = "item", ["image"] = "electrode.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Thunder Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["exeggcute"] = {["name"] = "exeggcute", ["label"] = "Exeggcute", ["weight"] = 0, ["type"] = "item", ["image"] = "exeggcute.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["exeggutor"] = {["name"] = "exeggutor", ["label"] = "Exeggutor", ["weight"] = 0, ["type"] = "item", ["image"] = "exeggutor.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["farfetchd"] = {["name"] = "farfetchd", ["label"] = "Farfetchd", ["weight"] = 0, ["type"] = "item", ["image"] = "farfetchd.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["fearow"] = {["name"] = "fearow", ["label"] = "Fearow", ["weight"] = 0, ["type"] = "item", ["image"] = "fearow.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["flareon"] = {["name"] = "flareon", ["label"] = "Flareon", ["weight"] = 0, ["type"] = "item", ["image"] = "flareon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["gastly"] = {["name"] = "gastly", ["label"] = "Gastly", ["weight"] = 0, ["type"] = "item", ["image"] = "gastly.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["gengar"] = {["name"] = "gengar", ["label"] = "Gengar", ["weight"] = 0, ["type"] = "item", ["image"] = "gengar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["geodude"] = {["name"] = "geodude", ["label"] = "Geodude", ["weight"] = 0, ["type"] = "item", ["image"] = "geodude.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Boulder Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["gloom"] = {["name"] = "gloom", ["label"] = "Gloom", ["weight"] = 0, ["type"] = "item", ["image"] = "gloom.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["golbat"] = {["name"] = "golbat", ["label"] = "Golbat", ["weight"] = 0, ["type"] = "item", ["image"] = "golbat.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Soul Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["goldeen"] = {["name"] = "goldeen", ["label"] = "Goldeen", ["weight"] = 0, ["type"] = "item", ["image"] = "goldeen.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["golduck"] = {["name"] = "golduck", ["label"] = "Golduck", ["weight"] = 0, ["type"] = "item", ["image"] = "golduck.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Cascade Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["golem"] = {["name"] = "golem", ["label"] = "Golem", ["weight"] = 0, ["type"] = "item", ["image"] = "golem.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["graveler"] = {["name"] = "graveler", ["label"] = "Graveler", ["weight"] = 0, ["type"] = "item", ["image"] = "graveler.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Boulder Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["grimer"] = {["name"] = "grimer", ["label"] = "Grimer", ["weight"] = 0, ["type"] = "item", ["image"] = "grimer.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["growlithe"] = {["name"] = "growlithe", ["label"] = "Growlithe", ["weight"] = 0, ["type"] = "item", ["image"] = "growlithe.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["gyarados"] = {["name"] = "gyarados", ["label"] = "Gyarados", ["weight"] = 0, ["type"] = "item", ["image"] = "gyarados.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["haunter"] = {["name"] = "haunter", ["label"] = "Haunter", ["weight"] = 0, ["type"] = "item", ["image"] = "haunter.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["hitmonchan"] = {["name"] = "hitmonchan", ["label"] = "Hitmonchan", ["weight"] = 0, ["type"] = "item", ["image"] = "hitmonchan.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["hitmonlee"] = {["name"] = "hitmonlee", ["label"] = "Hitmonlee", ["weight"] = 0, ["type"] = "item", ["image"] = "hitmonlee.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["horsea"] = {["name"] = "horsea", ["label"] = "Horsea", ["weight"] = 0, ["type"] = "item", ["image"] = "horsea.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["hypno"] = {["name"] = "hypno", ["label"] = "Hypno", ["weight"] = 0, ["type"] = "item", ["image"] = "hypno.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Marsh Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["ivysaur"] = {["name"] = "ivysaur", ["label"] = "Ivysaur", ["weight"] = 0, ["type"] = "item", ["image"] = "ivysaur.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["jigglypuff"] = {["name"] = "jigglypuff", ["label"] = "Jigglypuff", ["weight"] = 0, ["type"] = "item", ["image"] = "jigglypuff.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["jolteon"] = {["name"] = "jolteon", ["label"] = "Jolteon", ["weight"] = 0, ["type"] = "item", ["image"] = "jolteon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Thunder Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["jynx"] = {["name"] = "jynx", ["label"] = "Jynx", ["weight"] = 0, ["type"] = "item", ["image"] = "jynx.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Marsh Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["kabuto"] = {["name"] = "kabuto", ["label"] = "Kabuto", ["weight"] = 0, ["type"] = "item", ["image"] = "kabuto.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["kabutops"] = {["name"] = "kabutops", ["label"] = "Kabutops", ["weight"] = 0, ["type"] = "item", ["image"] = "kabutops.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Boulder Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["kadabra"] = {["name"] = "kadabra", ["label"] = "Kadabra", ["weight"] = 0, ["type"] = "item", ["image"] = "kadabra.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Marsh Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["kakuna"] = {["name"] = "kakuna", ["label"] = "Kakuna", ["weight"] = 0, ["type"] = "item", ["image"] = "kakuna.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["kangaskhan"] = {["name"] = "kangaskhan", ["label"] = "Kangaskhan", ["weight"] = 0, ["type"] = "item", ["image"] = "kangaskhan.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["kingler"] = {["name"] = "kingler", ["label"] = "Kingler", ["weight"] = 0, ["type"] = "item", ["image"] = "kingler.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["koffing"] = {["name"] = "koffing", ["label"] = "Koffing", ["weight"] = 0, ["type"] = "item", ["image"] = "koffing.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Soul Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["krabby"] = {["name"] = "krabby", ["label"] = "Krabby", ["weight"] = 0, ["type"] = "item", ["image"] = "krabby.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["lapras"] = {["name"] = "lapras", ["label"] = "Lapras", ["weight"] = 0, ["type"] = "item", ["image"] = "lapras.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Cascade Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["lickitung"] = {["name"] = "lickitung", ["label"] = "Lickitung", ["weight"] = 0, ["type"] = "item", ["image"] = "lickitung.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["machamp"] = {["name"] = "machamp", ["label"] = "Machamp", ["weight"] = 0, ["type"] = "item", ["image"] = "machamp.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["machoke"] = {["name"] = "machoke", ["label"] = "Machoke", ["weight"] = 0, ["type"] = "item", ["image"] = "machoke.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["machop"] = {["name"] = "machop", ["label"] = "Machop", ["weight"] = 0, ["type"] = "item", ["image"] = "machop.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["magikarp"] = {["name"] = "magikarp", ["label"] = "Magikarp", ["weight"] = 0, ["type"] = "item", ["image"] = "magikarp.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["magmar"] = {["name"] = "magmar", ["label"] = "Magmar", ["weight"] = 0, ["type"] = "item", ["image"] = "magmar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Volcano Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["magnemite"] = {["name"] = "magnemite", ["label"] = "Magnemite", ["weight"] = 0, ["type"] = "item", ["image"] = "magnemite.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["magneton"] = {["name"] = "magneton", ["label"] = "Magneton", ["weight"] = 0, ["type"] = "item", ["image"] = "magneton.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Thunder Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mankey"] = {["name"] = "mankey", ["label"] = "Mankey", ["weight"] = 0, ["type"] = "item", ["image"] = "mankey.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["marowak"] = {["name"] = "marowak", ["label"] = "Marowak", ["weight"] = 0, ["type"] = "item", ["image"] = "marowak.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["marshbadge"] = {["name"] = "marshbadge", ["label"] = "MarshBadge", ["weight"] = 0, ["type"] = "item", ["image"] = "marshBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/8 for Trophy Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["meowth"] = {["name"] = "meowth", ["label"] = "Meowth", ["weight"] = 0, ["type"] = "item", ["image"] = "meowth.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["metapod"] = {["name"] = "metapod", ["label"] = "Metapod", ["weight"] = 0, ["type"] = "item", ["image"] = "metapod.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mew"] = {["name"] = "mew", ["label"] = "Mew", ["weight"] = 0, ["type"] = "item", ["image"] = "mew.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mewtwo"] = {["name"] = "mewtwo", ["label"] = "Mewtwo", ["weight"] = 0, ["type"] = "item", ["image"] = "mewtwo.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Earth Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["moltres"] = {["name"] = "moltres", ["label"] = "Moltres", ["weight"] = 0, ["type"] = "item", ["image"] = "moltres.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Volcano Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mrmime"] = {["name"] = "mrmime", ["label"] = "Mr_mime", ["weight"] = 0, ["type"] = "item", ["image"] = "mrmime.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Marsh Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["muk"] = {["name"] = "muk", ["label"] = "Muk", ["weight"] = 0, ["type"] = "item", ["image"] = "muk.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["nidoking"] = {["name"] = "nidoking", ["label"] = "Nidoking", ["weight"] = 0, ["type"] = "item", ["image"] = "nidoking.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Earth Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["nidoqueen"] = {["name"] = "nidoqueen", ["label"] = "Nidoqueen", ["weight"] = 0, ["type"] = "item", ["image"] = "nidoqueen.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Earth Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["nidoran"] = {["name"] = "nidoran", ["label"] = "Nidoran", ["weight"] = 0, ["type"] = "item", ["image"] = "nidoran.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["nidorina"] = {["name"] = "nidorina", ["label"] = "Nidorina", ["weight"] = 0, ["type"] = "item", ["image"] = "nidorina.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["nidorino"] = {["name"] = "nidorino", ["label"] = "Nidorino", ["weight"] = 0, ["type"] = "item", ["image"] = "nidorino.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["ninetails"] = {["name"] = "ninetails", ["label"] = "Ninetails", ["weight"] = 0, ["type"] = "item", ["image"] = "ninetails.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Volcano badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["oddish"] = {["name"] = "oddish", ["label"] = "Oddish", ["weight"] = 0, ["type"] = "item", ["image"] = "oddish.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["omanyte"] = {["name"] = "omanyte", ["label"] = "Omanyte", ["weight"] = 0, ["type"] = "item", ["image"] = "omanyte.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["omastar"] = {["name"] = "omastar", ["label"] = "Omastar", ["weight"] = 0, ["type"] = "item", ["image"] = "omastar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Boulder Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["onix"] = {["name"] = "onix", ["label"] = "Onix", ["weight"] = 0, ["type"] = "item", ["image"] = "onix.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Boulder Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["paras"] = {["name"] = "paras", ["label"] = "Paras", ["weight"] = 0, ["type"] = "item", ["image"] = "paras.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["parasect"] = {["name"] = "parasect", ["label"] = "Parasect", ["weight"] = 0, ["type"] = "item", ["image"] = "parasect.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["persian"] = {["name"] = "persian", ["label"] = "Persian", ["weight"] = 0, ["type"] = "item", ["image"] = "persian.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Earth Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pidgeotto"] = {["name"] = "pidgeotto", ["label"] = "Pidgeotto", ["weight"] = 0, ["type"] = "item", ["image"] = "pidgeotto.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pidgey"] = {["name"] = "pidgey", ["label"] = "Pidgey", ["weight"] = 0, ["type"] = "item", ["image"] = "pidgey.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pikachu"] = {["name"] = "pikachu", ["label"] = "Pikachu", ["weight"] = 0, ["type"] = "item", ["image"] = "pikachu.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Thunder Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pinsir"] = {["name"] = "pinsir", ["label"] = "Pinsir", ["weight"] = 0, ["type"] = "item", ["image"] = "pinsir.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["poliwag"] = {["name"] = "poliwag", ["label"] = "Poliwag", ["weight"] = 0, ["type"] = "item", ["image"] = "poliwag.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["polywhirl"] = {["name"] = "polywhirl", ["label"] = "Polywhirl", ["weight"] = 0, ["type"] = "item", ["image"] = "polywhirl.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["poliwrath"] = {["name"] = "poliwrath", ["label"] = "Poliwrath", ["weight"] = 0, ["type"] = "item", ["image"] = "poliwrath.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["ponyta"] = {["name"] = "ponyta", ["label"] = "Ponyta", ["weight"] = 0, ["type"] = "item", ["image"] = "ponyta.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["porygon"] = {["name"] = "porygon", ["label"] = "Porygon", ["weight"] = 0, ["type"] = "item", ["image"] = "porygon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["primeape"] = {["name"] = "primeape", ["label"] = "Primeape", ["weight"] = 0, ["type"] = "item", ["image"] = "primeape.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["psyduck"] = {["name"] = "psyduck", ["label"] = "Psyduck", ["weight"] = 0, ["type"] = "item", ["image"] = "psyduck.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Cascade Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["raichu"] = {["name"] = "raichu", ["label"] = "Raichu", ["weight"] = 0, ["type"] = "item", ["image"] = "raichu.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rainbowbadge"] = {["name"] = "rainbowbadge", ["label"] = "RainbowBadge", ["weight"] = 0, ["type"] = "item", ["image"] = "rainbowBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Rainbow Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rapidash"] = {["name"] = "rapidash", ["label"] = "Rapidash", ["weight"] = 0, ["type"] = "item", ["image"] = "rapidash.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Volcano Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["raticate"] = {["name"] = "raticate", ["label"] = "Raticate", ["weight"] = 0, ["type"] = "item", ["image"] = "raticate.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rattata"] = {["name"] = "rattata", ["label"] = "Rattata", ["weight"] = 0, ["type"] = "item", ["image"] = "rattata.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rhydon"] = {["name"] = "rhydon", ["label"] = "Rhydon", ["weight"] = 0, ["type"] = "item", ["image"] = "rhydon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Earth Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rhyhorn"] = {["name"] = "rhyhorn", ["label"] = "Rhyhorn", ["weight"] = 0, ["type"] = "item", ["image"] = "rhyhorn.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Boulder Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["sandshrew"] = {["name"] = "sandshrew", ["label"] = "Sandshrew", ["weight"] = 0, ["type"] = "item", ["image"] = "sandshrew.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["sandslash"] = {["name"] = "sandslash", ["label"] = "Sandslash", ["weight"] = 0, ["type"] = "item", ["image"] = "sandslash.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["scyther"] = {["name"] = "scyther", ["label"] = "Scyther", ["weight"] = 0, ["type"] = "item", ["image"] = "scyther.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Rainbow Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["seadra"] = {["name"] = "seadra", ["label"] = "Seadra", ["weight"] = 0, ["type"] = "item", ["image"] = "seadra.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["seaking"] = {["name"] = "seaking", ["label"] = "Seaking", ["weight"] = 0, ["type"] = "item", ["image"] = "seaking.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["seel"] = {["name"] = "seel", ["label"] = "Seel", ["weight"] = 0, ["type"] = "item", ["image"] = "seel.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["shellder"] = {["name"] = "shellder", ["label"] = "Shellder", ["weight"] = 0, ["type"] = "item", ["image"] = "shellder.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["slowbro"] = {["name"] = "slowbro", ["label"] = "Slowbro", ["weight"] = 0, ["type"] = "item", ["image"] = "slowbro.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["slowpoke"] = {["name"] = "slowpoke", ["label"] = "Slowpoke", ["weight"] = 0, ["type"] = "item", ["image"] = "slowpoke.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["snorlax"] = {["name"] = "snorlax", ["label"] = "Snorlax", ["weight"] = 0, ["type"] = "item", ["image"] = "snorlax.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Soul Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["soulbadge"] = {["name"] = "soulbadge", ["label"] = "SoulBadge", ["weight"] = 0, ["type"] = "item", ["image"] = "soulBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/8 for Trophy Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["spearow"] = {["name"] = "spearow", ["label"] = "Spearow", ["weight"] = 0, ["type"] = "item", ["image"] = "spearow.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["squirtle"] = {["name"] = "squirtle", ["label"] = "Squirtle", ["weight"] = 0, ["type"] = "item", ["image"] = "squirtle.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["starmie"] = {["name"] = "starmie", ["label"] = "Starmie", ["weight"] = 0, ["type"] = "item", ["image"] = "starmie.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Cascade Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["staryu"] = {["name"] = "staryu", ["label"] = "Staryu", ["weight"] = 0, ["type"] = "item", ["image"] = "staryu.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["tangela"] = {["name"] = "tangela", ["label"] = "Tangela", ["weight"] = 0, ["type"] = "item", ["image"] = "tangela.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Rainbow Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["tauros"] = {["name"] = "tauros", ["label"] = "Tauros", ["weight"] = 0, ["type"] = "item", ["image"] = "tauros.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["tentacool"] = {["name"] = "tentacool", ["label"] = "Tentacool", ["weight"] = 0, ["type"] = "item", ["image"] = "tentacool.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["tentacruel"] = {["name"] = "tentacruel", ["label"] = "Tentacruel", ["weight"] = 0, ["type"] = "item", ["image"] = "tentacruel.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["thunderbadge"] = {["name"] = "thunderbadge", ["label"] = "ThunderBadge", ["weight"] = 0, ["type"] = "item", ["image"] = "thunderBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/8 for Trophy Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["togepi"] = {["name"] = "togepi", ["label"] = "Togepi", ["weight"] = 0, ["type"] = "item", ["image"] = "togepi.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Cascade Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["trophybadge"] = {["name"] = "trophybadge", ["label"] = "Trophy Badge", ["weight"] = 0, ["type"] = "item", ["image"] = "trophyBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "OwO You have a Trophy", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["vaporeon"] = {["name"] = "vaporeon", ["label"] = "Vaporeon", ["weight"] = 0, ["type"] = "item", ["image"] = "vaporeon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["venomoth"] = {["name"] = "venomoth", ["label"] = "Venomoth", ["weight"] = 0, ["type"] = "item", ["image"] = "venomoth.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "4/6 for Soul Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["venonat"] = {["name"] = "venonat", ["label"] = "Venonat", ["weight"] = 0, ["type"] = "item", ["image"] = "venonat.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "5/6 for Soul Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["venusaur"] = {["name"] = "venusaur", ["label"] = "Venusaur", ["weight"] = 0, ["type"] = "item", ["image"] = "venusaur.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Rainbow Badge - Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["victreebel"] = {["name"] = "victreebel", ["label"] = "Victreebel", ["weight"] = 0, ["type"] = "item", ["image"] = "victreebel.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Rainbow Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["vileplume"] = {["name"] = "vileplume", ["label"] = "Vileplume", ["weight"] = 0, ["type"] = "item", ["image"] = "vileplume.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "3/6 for Rainbow Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["volcanobadge"] = {["name"] = "volcanobadge", ["label"] = "Volcano Badge", ["weight"] = 0, ["type"] = "item", ["image"] = "volcanoBadge.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "7/8 for Trophy Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["voltorb"] = {["name"] = "voltorb", ["label"] = "Voltorb", ["weight"] = 0, ["type"] = "item", ["image"] = "voltorb.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["vulpix"] = {["name"] = "vulpix", ["label"] = "Vulpix", ["weight"] = 0, ["type"] = "item", ["image"] = "vulpix.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["wartortle"] = {["name"] = "wartortle", ["label"] = "Wartortle", ["weight"] = 0, ["type"] = "item", ["image"] = "wartortle.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["weedle"] = {["name"] = "weedle", ["label"] = "Weedle", ["weight"] = 0, ["type"] = "item", ["image"] = "weedle.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["weepinbell"] = {["name"] = "weepinbell", ["label"] = "Weepinbell", ["weight"] = 0, ["type"] = "item", ["image"] = "weepinbell.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["weezing"] = {["name"] = "weezing", ["label"] = "Weezing", ["weight"] = 0, ["type"] = "item", ["image"] = "weezing.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "2/6 for Soul Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["wigglytuff"] = {["name"] = "wigglytuff", ["label"] = "Wigglytuff", ["weight"] = 0, ["type"] = "item", ["image"] = "wigglytuff.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["zapdos"] = {["name"] = "zapdos", ["label"] = "Zapdos", ["weight"] = 0, ["type"] = "item", ["image"] = "zapdos.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "1/6 for Thunder Badge - Ultra Rare", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["zubat"] = {["name"] = "zubat", ["label"] = "Zubat", ["weight"] = 0, ["type"] = "item", ["image"] = "zubat.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["bulbasaur"] = {["name"] = "bulbasaur", ["label"] = "Bulbasaur", ["weight"] = 0, ["type"] = "item", ["image"] = "bulbasaur.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pidgeot"] = {["name"] = "pidgeot", ["label"] = "Pidgeot", ["weight"] = 0, ["type"] = "item", ["image"] = "pidgeot.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "6/6 for Earth Badge", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["blastoisev"] = {["name"] = "blastoisev", ["label"] = "Blastoise V", ["weight"] = 0, ["type"] = "item", ["image"] = "blastoisev.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "V Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["charizardv"] = {["name"] = "charizardv", ["label"] = "Charizard V", ["weight"] = 0, ["type"] = "item", ["image"] = "charizardv.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "V Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mewv"] = {["name"] = "mewv", ["label"] = "Mew V", ["weight"] = 0, ["type"] = "item", ["image"] = "mewv.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "V Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pikachuv"] = {["name"] = "pikachuv", ["label"] = "Pikachu V", ["weight"] = 0, ["type"] = "item", ["image"] = "pikachuv.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "V Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["snorlaxv"] = {["name"] = "snorlaxv", ["label"] = "Snorlax V", ["weight"] = 0, ["type"] = "item", ["image"] = "snorlaxv.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "V Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["venusaurv"] = {["name"] = "venusaurv", ["label"] = "Venusaur V", ["weight"] = 0, ["type"] = "item", ["image"] = "venusaurv.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "V Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["blastoisevmax"] = {["name"] = "blastoisevmax", ["label"] = "Blastoise Vmax", ["weight"] = 0, ["type"] = "item", ["image"] = "blastoisevmax.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Vmax Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mewtwogx"] = {["name"] = "mewtwogx", ["label"] = "Mewtwo Vmax", ["weight"] = 0, ["type"] = "item", ["image"] = "mewtwogx.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Vmax Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["snorlaxvmax"] = {["name"] = "snorlaxvmax", ["label"] = "Snorlax Vmax", ["weight"] = 0, ["type"] = "item", ["image"] = "snorlaxvmax.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Vmax Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["venusaurvmax"] = {["name"] = "venusaurvmax", ["label"] = "Venusaur Vmax", ["weight"] = 0, ["type"] = "item", ["image"] = "venusaurvmax.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Vmax Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["vmaxcharizard"] = {["name"] = "vmaxcharizard", ["label"] = "Charizard Vmax", ["weight"] = 0, ["type"] = "item", ["image"] = "vmaxcharizard.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Vmax Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["vmaxpikachu"] = {["name"] = "vmaxpikachu", ["label"] = "Pikachu Vmax", ["weight"] = 0, ["type"] = "item", ["image"] = "vmaxpikachu.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Vmax Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rainbowmewtwogx"] = {["name"] = "rainbowmewtwogx", ["label"] = "Rainbow Mewtwo", ["weight"] = 0, ["type"] = "item", ["image"] = "rainbowmewtwogx.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rainbow Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rainbowvmaxcharizard"] = {["name"] = "rainbowvmaxcharizard", ["label"] = "Rainbow Charizard", ["weight"] = 0, ["type"] = "item", ["image"] = "rainbowvmaxcharizard.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rainbow Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rainbowvmaxpikachu"] = {["name"] = "rainbowvmaxpikachu", ["label"] = "Rainbow Pikachu", ["weight"] = 0, ["type"] = "item", ["image"] = "rainbowvmaxpikachu.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rainbow Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["snorlaxvmaxrainbow"] = {["name"] = "snorlaxvmaxrainbow", ["label"] = "Rainbox Snorlax", ["weight"] = 0, ["type"] = "item", ["image"] = "snorlaxvmaxrainbow.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rainbow Card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pokebox"] = {["name"] = "pokebox", ["label"] = "Pokemon TCG Box", ["weight"] = 50, ["type"] = "item", ["image"] = "pokebox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Pokemon TCG Storage Box", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- Bowling Shit -- REMOVED SCRIPT FOR NOW
|
||
|
["bowlingball"] = {["name"] = "bowlingball", ["label"] = "Bowling Ball", ["weight"] = 10000, ["type"] = "item", ["image"] = "bowlingball.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Strike!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["bowlingreceipt"] = {["name"] = "bowlingreceipt", ["label"] = "Bowling Receipt", ["weight"] = 100, ["type"] = "item", ["image"] = "bowlingreceipt.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Proof of purchase Bowling receipt.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['customs_receipt'] = {['name'] = 'customs_receipt', ['label'] = 'Receipt', ['weight'] = 10, ['type'] = 'item', ['image'] = 'customs_receipt.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Your car/s customization receipt'},
|
||
|
|
||
|
-- Rental
|
||
|
["rentalpapers"] = {["name"] = "rentalpapers", ["label"] = "Rental Papers", ["weight"] = 100, ["type"] = "item", ["image"] = "rentalpapers.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Yea, this is my car i can prove it!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- Funkopop Toys
|
||
|
['funkopop_harrypotter'] = {['name'] = 'funkopop_harrypotter', ['label'] = 'Harry Potter Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_harrypotter.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Harry Potter Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_draco'] = {['name'] = 'funkopop_draco', ['label'] = 'Draco Malfoy Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_draco.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Draco Malfoy Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_hermione'] = {['name'] = 'funkopop_hermione', ['label'] = 'Hermione Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_hermione.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Hermione Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_ron'] = {['name'] = 'funkopop_ron', ['label'] = 'Ron Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_ron.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Ron Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_dumbledore'] = {['name'] = 'funkopop_dumbledore', ['label'] = 'Dumbledore Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_dumbledore.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Dumbledore Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_hedwig'] = {['name'] = 'funkopop_hedwig', ['label'] = 'Hedwig Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_hedwig.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Hedwig Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_hagrid'] = {['name'] = 'funkopop_hagrid', ['label'] = 'Hagrid Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_hagrid.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Hagrid Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_moaningmertle'] = {['name'] = 'funkopop_moaningmertle', ['label'] = 'Moaning Mertle Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_moaningmertle.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Moaning Mertle Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_voldemort'] = {['name'] = 'funkopop_voldemort', ['label'] = 'Voldemort Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_voldemort.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Voldemort Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['funkopop_snape'] = {['name'] = 'funkopop_snape', ['label'] = 'Severus Snape Funkopop', ['weight'] = 2000, ['type'] = 'item', ['image'] = 'funkopop_snape.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Severus Snape Funkopop Toy', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Gang Chains
|
||
|
['slothchain'] = {['name'] = 'slothchain', ['label'] = 'Sloth Chain', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'np_sloth_chain.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sloth God.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cg_chain'] = {['name'] = 'cg_chain', ['label'] = 'CG Chain', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'np_cg_chain.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'This chain belongs to the legendary Chang Gang.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['gsf_chain'] = {['name'] = 'gsf_chain', ['label'] = 'GSF Chain', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'np_gsf_chain.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grove Street Families gang chain.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cerberus_chain'] = {['name'] = 'cerberus_chain', ['label'] = 'Cerberus Chain', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'np_cerberus_chain.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cerberus Business Chain.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['mdm_chain'] = {['name'] = 'mdm_chain', ['label'] = 'MDM Chain', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'np_mdm_chain.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The Mandem chain.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['esv_chain'] = {['name'] = 'esv_chain', ['label'] = 'ESV Chain', ['weight'] = 4000, ['type'] = 'item', ['image'] = 'np_vagos_chain.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'East Side Vagos gang chain.', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- qb-methlab
|
||
|
["ephedrine"] = {["name"] = "ephedrine", ["label"] = "Ephedrine", ["weight"] = 500, ["type"] = "item", ["image"] = "chemical1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Prescription medicine used to treat the symptoms of low blood pressure", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["hydrochloricacid"] = {["name"] = "hydrochloricacid", ["label"] = "Hydrochloric Acid", ["weight"] = 500, ["type"] = "item", ["image"] = "chemical1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Component of the gastric acid in the digestive systems of most animal species...including humans", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["acetone"] = {["name"] = "acetone", ["label"] = "Acetone", ["weight"] = 500, ["type"] = "item", ["image"] = "chemical2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Breathing moderate amounts for a short amount of time can irritate your nose, throat, lungs and eyes", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["puremeth"] = {["name"] = "puremeth", ["label"] = "Pure Meth", ["weight"] = 100, ["type"] = "item", ["image"] = "meth10g.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A baggie of Pure Meth", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["meth"] = {["name"] = "meth", ["label"] = "Meth", ["weight"] = 100, ["type"] = "item", ["image"] = "meth10g.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A baggie of Meth", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["methtray"] = {["name"] = "methtray", ["label"] = "Meth Tray", ["weight"] = 2000, ["type"] = "item", ["image"] = "methbrick.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "make some meth", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["puremethtray"] = {["name"] = "puremethtray", ["label"] = "Pure Meth Tray", ["weight"] = 2600, ["type"] = "item", ["image"] = "methbrick.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "make some meth", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["labkey"] = {["name"] = "labkey", ["label"] = "Key", ["weight"] = 500, ["type"] = "item", ["image"] = "labkey.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Key for a lock...?", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- qb-cokerun
|
||
|
["stingray"] = {["name"] = "stingray", ["label"] = "Stingray", ["weight"] = 500, ["type"] = "item", ["image"] = "np_hacking_device.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Intercept messages from cellular towers", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["coke"] = {["name"] = "coke", ["label"] = "Coke Powder", ["weight"] = 1000, ["type"] = "item", ["image"] = "coke.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cocaine processed powder", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- qb-containers
|
||
|
["small_container"] = {["name"] = "small_container", ["label"] = "Small Container", ["weight"] = 5000, ["type"] = "item", ["image"] = "small_container.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Small Container", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["medium_container"] = {["name"] = "medium_container", ["label"] = "Medium Container", ["weight"] = 10000, ["type"] = "item", ["image"] = "medium_container.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Medium Container", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["large_container"] = {["name"] = "large_container", ["label"] = "Large Container", ["weight"] = 15000, ["type"] = "item", ["image"] = "large_container.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Large Container", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- Arcade stuff
|
||
|
["arcadegreen"] = {["name"] = "arcadegreen", ["label"] = "Green Arcade Card", ["weight"] = 100, ["type"] = "item", ["image"] = "arcadegreen.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A green arcade card.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["arcadeblue"] = {["name"] = "arcadeblue", ["label"] = "Blue Arcade Card", ["weight"] = 100, ["type"] = "item", ["image"] = "arcadeblue.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A blue arcade card.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["arcadegold"] = {["name"] = "arcadegold", ["label"] = "Gold Arcade Card", ["weight"] = 100, ["type"] = "item", ["image"] = "arcadegold.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A gold arcade card", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- RANDOM SHIT
|
||
|
["bong"] = {["name"] = "bong", ["label"] = "Bong", ["weight"] = 500, ["type"] = "item", ["image"] = "bong.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "In Australia this is called a \"Billy\"", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["nightvision"] = {["name"] = "nightvision", ["label"] = "Night Vision Goggles", ["weight"] = 1000, ["type"] = "item", ["image"] = "nightvgoggles.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Bravo Six, going dark.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['adrenshot'] = {['name'] = 'adrenshot', ['label'] = 'Adrenaline Shot', ['weight'] = 200, ['type'] = 'item', ['image'] = 'np_adrenaline.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Save someones heart or keep up with crims', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- don't use duffel for now (need new script, this one took backpacks off peoples backs after equipping in store lmao)
|
||
|
["duffel-bag"] = {["name"] = "duffel-bag", ["label"] = "Bag", ["weight"] = 5000, ["type"] = "item", ["image"] = "duffel.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "im bag im baag im baaaaag", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["ifak"] = {["name"] = "ifak", ["label"] = "IFAK", ["weight"] = 2000, ["type"] = "item", ["image"] = "ifak.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Heavy duty medical supplies", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['slushy'] = {['name'] = 'slushy', ['label'] = 'Slushy', ['weight'] = 750, ['type'] = 'item', ['image'] = 'slushy.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Damn a Slushy...', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- ["cigarettes"] = {["name"] = "cigarette", ["label"] = "Marlboros", ["weight"] = 400, ["type"] = "item", ["image"] = "np_ciggypack.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Time for a smoke", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["wheelchair"] = {["name"] = "wheelchair", ["label"] = "Wheelchair", ["weight"] = 8000, ["type"] = "item", ["image"] = "np_wheelchair.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "To assist you with all your handicapped needs.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
-- Sign Robbery
|
||
|
["stopsign"] = {["name"] = "stopsign", ["label"] = "Stop Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "stopsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Stop Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["walkingmansign"] = {["name"] = "walkingmansign", ["label"] = "Pedestrian Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "walkingmansign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Pedestrian Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["dontblockintersectionsign"] = {["name"] = "dontblockintersectionsign", ["label"] = "Intersection Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "dontblockintersectionsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Intersection Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uturnsign"] = {["name"] = "uturnsign", ["label"] = "U Turn Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "uturnsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "U Turn Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["noparkingsign"] = {["name"] = "noparkingsign", ["label"] = "No Parking Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "noparkingsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "No Parking Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["leftturnsign"] = {["name"] = "leftturnsign", ["label"] = "Left Turn Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "leftturnsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Left Turn Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["rightturnsign"] = {["name"] = "rightturnsign", ["label"] = "Right Turn Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "rightturnsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Right Turn Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["notrespassingsign"] = {["name"] = "notrespassingsign", ["label"] = "No Trespassing Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "notrespassingsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "No Trespassing Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["yieldsign"] = {["name"] = "yieldsign", ["label"] = "Yield Sign", ["weight"] = 1, ["type"] = "item", ["image"] = "yieldsign.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Yield Sign", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- custom house robbery shit
|
||
|
["stolentv"] = {["name"] = "stolentv", ["label"] = "TV", ["weight"] = 12000, ["type"] = "item", ["image"] = "np_stolentv.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "This is a nice looking TV, probably stolen though...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["safe"] = {["name"] = "safe", ["label"] = "Safe", ["weight"] = 30000, ["type"] = "item", ["image"] = "np_housesafe.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Fuck this shit is heavy...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
["package"] = {["name"] = "package", ["label"] = "Suspicious Package", ["weight"] = 5000, ["type"] = "item", ["image"] = "np_dark_market_package.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Package covered in tape and milk stickers.\nMarked for Police Seizure", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--uWu Cafe
|
||
|
--Sandwiches
|
||
|
["uwuhamcheesesandwich"] = {["name"] = "uwuhamcheesesandwich", ["label"] = "Ham and Cheese Sandwich", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuhamcheesesandwich.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuvanillasandwich"] = {["name"] = "uwuvanillasandwich", ["label"] = "Vanilla Sandwich", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuvanillasandwich.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuchocolatesandwich"] = {["name"] = "uwuchocolatesandwich", ["label"] = "Chocolate Sandwich", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuchocolatesandwich.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwustrawberrysandwich"] = {["name"] = "uwustrawberrysandwich", ["label"] = "Strawberry Sandwich", ["weight"] = 100, ["type"] = "item", ["image"] = "uwustrawberrysandwich.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--Drinks
|
||
|
["uwubobatea"] = {["name"] = "uwubobatea", ["label"] = "Boba Tea", ["weight"] = 100, ["type"] = "item", ["image"] = "uwubobatea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwubbobatea"] = {["name"] = "uwubbobatea", ["label"] = "Blue Boba Tea", ["weight"] = 100, ["type"] = "item", ["image"] = "uwubbobatea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwugbobatea"] = {["name"] = "uwugbobatea", ["label"] = "Green Boba Tea", ["weight"] = 100, ["type"] = "item", ["image"] = "uwugbobatea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwupbobatea"] = {["name"] = "uwupbobatea", ["label"] = "Pink Boba Tea", ["weight"] = 100, ["type"] = "item", ["image"] = "uwupbobatea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuobobatea"] = {["name"] = "uwuobobatea", ["label"] = "Orange Boba Tea", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuobobatea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwunekolatte"] = {["name"] = "uwunekolatte", ["label"] = "Neko Latte", ["weight"] = 100, ["type"] = "item", ["image"] = "uwunekolatte.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuuwucapuchino"] = {["name"] = "uwuuwucapuchino", ["label"] = "Capuchino", ["weight"] = 100, ["type"] = "item", ["image"] = "uwucapuchino.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwucoffee"] = {["name"] = "uwucoffee", ["label"] = "Coffee", ["weight"] = 100, ["type"] = "item", ["image"] = "uwucoffee.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwusake"] = {["name"] = "uwusake", ["label"] = "Sake", ["weight"] = 100, ["type"] = "item", ["image"] = "uwusake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuhotchocolate"] = {["name"] = "uwuhotchocolate", ["label"] = "Hot Chocolate", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuhotchocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwurbobatea"] = {["name"] = "uwurbobatea", ["label"] = "Rose Boba Tea", ["weight"] = 100, ["type"] = "item", ["image"] = "uwurbobatea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--Oven Food
|
||
|
["uwunekocake"] = {["name"] = "uwunekocake", ["label"] = "Cup Cake", ["weight"] = 100, ["type"] = "item", ["image"] = "uwunekocake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwunekocookie"] = {["name"] = "uwunekocookie", ["label"] = "Neko Cookie", ["weight"] = 100, ["type"] = "item", ["image"] = "uwunekocookie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwubmochi"] = {["name"] = "uwubmochi", ["label"] = "Blue Mochi", ["weight"] = 100, ["type"] = "item", ["image"] = "uwubmochi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwupmochi"] = {["name"] = "uwupmochi", ["label"] = "Pink Mochi", ["weight"] = 100, ["type"] = "item", ["image"] = "uwupmochi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwugmochi"] = {["name"] = "uwugmochi", ["label"] = "Green Mochi", ["weight"] = 100, ["type"] = "item", ["image"] = "uwugmochi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuomochi"] = {["name"] = "uwuomochi", ["label"] = "Orange Mochi", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuomochi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwurmochi"] = {["name"] = "uwurmochi", ["label"] = "Rose Mochi", ["weight"] = 100, ["type"] = "item", ["image"] = "uwurmochi.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--Hot Plates
|
||
|
["uwumisosoup"] = {["name"] = "uwumisosoup", ["label"] = "Miso Soup", ["weight"] = 100, ["type"] = "item", ["image"] = "uwumisosoup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwucatfood"] = {["name"] = "uwucatfood", ["label"] = "Cat Food", ["weight"] = 100, ["type"] = "item", ["image"] = "uwucatfood.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwupancakes"] = {["name"] = "uwupancakes", ["label"] = "Pancakes", ["weight"] = 100, ["type"] = "item", ["image"] = "uwupancakes.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwunekodonut"] = {["name"] = "uwunekodonut", ["label"] = "Neko Donut", ["weight"] = 100, ["type"] = "item", ["image"] = "uwunekodonut.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuriceball"] = {["name"] = "uwuriceball", ["label"] = "Neko Onigiri", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuriceball.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--Ingredients
|
||
|
["uwuham"] = {["name"] = "uwuham", ["label"] = "Ham", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuham.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwucheese"] = {["name"] = "uwucheese", ["label"] = "Cheese", ["weight"] = 100, ["type"] = "item", ["image"] = "uwucheese.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwubread"] = {["name"] = "uwubread", ["label"] = "Bread", ["weight"] = 100, ["type"] = "item", ["image"] = "uwubread.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuboba"] = {["name"] = "uwuboba", ["label"] = "Boba", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuboba.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuflour"] = {["name"] = "uwuflour", ["label"] = "Flour", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuflour.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwurice"] = {["name"] = "uwurice", ["label"] = "Bowl of Rice", ["weight"] = 100, ["type"] = "item", ["image"] = "uwurice.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwusugar"] = {["name"] = "uwusugar", ["label"] = "Sugar", ["weight"] = 100, ["type"] = "item", ["image"] = "uwusugar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwunori"] = {["name"] = "uwunori", ["label"] = "Nori", ["weight"] = 100, ["type"] = "item", ["image"] = "uwunori.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwublueberry"] = {["name"] = "uwublueberry", ["label"] = "Blueberry", ["weight"] = 100, ["type"] = "item", ["image"] = "uwublueberry.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwustrawberry"] = {["name"] = "uwustrawberry", ["label"] = "Strawberry", ["weight"] = 100, ["type"] = "item", ["image"] = "uwustrawberry.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuvanilla"] = {["name"] = "uwuvanilla", ["label"] = "Vanilla", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuvanilla.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwurose"] = {["name"] = "uwurose", ["label"] = "Rose", ["weight"] = 100, ["type"] = "item", ["image"] = "uwurose.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "One rose for beautiful lady", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwumint"] = {["name"] = "uwumint", ["label"] = "Matcha", ["weight"] = 100, ["type"] = "item", ["image"] = "uwumatcha.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Mint thing", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwutofu"] = {["name"] = "uwutofu", ["label"] = "Tofu", ["weight"] = 100, ["type"] = "item", ["image"] = "uwutofu.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Mmm tofu", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwucup"] = {["name"] = "uwucup", ["label"] = "Cup", ["weight"] = 100, ["type"] = "item", ["image"] = "uwucup.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cup for everything", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuorange"] = {["name"] = "uwuorange", ["label"] = "Orange", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuorange.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An Orange.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwumilk"] = {["name"] = "uwumilk", ["label"] = "Milk", ["weight"] = 100, ["type"] = "item", ["image"] = "uwumilk.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Bottle of Milk", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuonion"] = {["name"] = "uwuonion", ["label"] = "Onion", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuonion.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "An onion", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuchocolate"] = {["name"] = "uwuchocolate", ["label"] = "Chocolate", ["weight"] = 100, ["type"] = "item", ["image"] = "uwuchocolate.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sweet Chocolate", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwutea"] = {["name"] = "uwutea", ["label"] = "Tea", ["weight"] = 100, ["type"] = "item", ["image"] = "uwutea.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cat Tea", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwueggs"] = {["name"] = "uwueggs", ["label"] = "Eggs", ["weight"] = 100, ["type"] = "item", ["image"] = "uwueggs.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cat Eggs :)", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwu-ticket"] = {["name"] = "uwu-ticket", ["label"] = "uWu Receipt", ["weight"] = 30, ["type"] = "item", ["image"] = "uwuticket.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cash these in at the bank!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--Mixtures
|
||
|
["uwunekocakemixture"] = {["name"] = "uwunekocakemixture", ["label"] = "Neko Cake Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwunekocakemixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwubmochimixture"] = {["name"] = "uwubmochimixture", ["label"] = "Blue Mochi Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwubmochimixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwugmochimixture"] = {["name"] = "uwugmochimixture", ["label"] = "Green Mochi Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwugmochimixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuomochimixture"] = {["name"] = "uwuomochimixture", ["label"] = "Orange Mochi Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwuomochimixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwupmochimixture"] = {["name"] = "uwupmochimixture", ["label"] = "Pink Mochi Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwupmochimixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwuriceballmixture"] = {["name"] = "uwuriceballmixture", ["label"] = "Neko Onigiri Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwuriceballmixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwunekocookiemixture"] = {["name"] = "uwunekocookiemixture", ["label"] = "Neko Cookie Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwunekocookiemixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwunekodonutmixture"] = {["name"] = "uwunekodonutmixture", ["label"] = "Neko Donut Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwunekodonutmixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwupancakesmixture"] = {["name"] = "uwupancakesmixture", ["label"] = "Pancakes Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwupancakesmixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwumisosoupmixture"] = {["name"] = "uwumisosoupmixture", ["label"] = "Miso Soup Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwumisosoupmixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwucatfoodmixture"] = {["name"] = "uwucatfoodmixture", ["label"] = "Cat Food Mixture", ["weight"] = 500, ["type"] = "item", ["image"] = "uwucatfoodmixture.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--- uWu Toys
|
||
|
["uwutoy1"] = {["name"] = "uwutoy1", ["label"] = "uWu Toy 1", ["weight"] = 200, ["type"] = "item", ["image"] = "uwutoy1.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "One of uWu toys...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwutoy2"] = {["name"] = "uwutoy2", ["label"] = "uWu Toy 2", ["weight"] = 200, ["type"] = "item", ["image"] = "uwutoy2.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "One of uWu toys...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwutoy3"] = {["name"] = "uwutoy3", ["label"] = "uWu Toy 3", ["weight"] = 200, ["type"] = "item", ["image"] = "uwutoy3.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "One of uWu toys...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwutoy4"] = {["name"] = "uwutoy4", ["label"] = "uWu Toy 4", ["weight"] = 200, ["type"] = "item", ["image"] = "uwutoy4.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "One of uWu toys...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["uwubox"] = {["name"] = "uwubox", ["label"] = "uWu Box", ["weight"] = 200, ["type"] = "item", ["image"] = "uwubox.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "One of uWu toys...", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
--qb-PizzaThis
|
||
|
--WINES
|
||
|
["amarone"] = {["name"] = "amarone", ["label"] = "Amarone", ["weight"] = 100, ["type"] = "item", ["image"] = "amarone.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["barbera"] = {["name"] = "barbera", ["label"] = "Barbera D'Asti", ["weight"] = 100, ["type"] = "item", ["image"] = "barbera.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["dolceto"] = {["name"] = "dolceto", ["label"] = "Dolcetto D'Alba", ["weight"] = 100, ["type"] = "item", ["image"] = "dolceto.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["housered"] = {["name"] = "housered", ["label"] = "House Red Wine", ["weight"] = 100, ["type"] = "item", ["image"] = "housered.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["housewhite"] = {["name"] = "housewhite", ["label"] = "House White Wine", ["weight"] = 100, ["type"] = "item", ["image"] = "housewhite.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["rosso"] = {["name"] = "rosso", ["label"] = "Rosso Del Montalcino", ["weight"] = 100, ["type"] = "item", ["image"] = "rosso.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--DESSERTS
|
||
|
["tiramisu"] = {["name"] = "tiramisu", ["label"] = "Tiramisu", ["weight"] = 100, ["type"] = "item", ["image"] = "tiramisu.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["gelato"] = {["name"] = "gelato", ["label"] = "Choc and Vanilla Gelato", ["weight"] = 100, ["type"] = "item", ["image"] = "gelato.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["medfruits"] = {["name"] = "medfruits", ["label"] = "Fresh Fruit Medly", ["weight"] = 100, ["type"] = "item", ["image"] = "medfruits.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--PASTA
|
||
|
["bolognese"] = {["name"] = "bolognese", ["label"] = "Bolognese", ["weight"] = 100, ["type"] = "item", ["image"] = "bolognese.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["calamari"] = {["name"] = "calamari", ["label"] = "Calamari Marinara", ["weight"] = 100, ["type"] = "item", ["image"] = "calamari.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["meatball"] = {["name"] = "meatball", ["label"] = "Homemade Meatballs", ["weight"] = 100, ["type"] = "item", ["image"] = "meatball.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["alla"] = {["name"] = "alla", ["label"] = "Alla Vodka", ["weight"] = 100, ["type"] = "item", ["image"] = "alla.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pescatore"] = {["name"] = "pescatore", ["label"] = "Pescatore", ["weight"] = 100, ["type"] = "item", ["image"] = "pescatore.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--PIZZA SLICES
|
||
|
["capricciosa"] = {["name"] = "capricciosa", ["label"] = "Capriccosa", ["weight"] = 100, ["type"] = "item", ["image"] = "capricciosa.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["diavola"] = {["name"] = "diavola", ["label"] = "Diavola", ["weight"] = 100, ["type"] = "item", ["image"] = "diavola.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["marinara"] = {["name"] = "marinara", ["label"] = "Marinara", ["weight"] = 100, ["type"] = "item", ["image"] = "marinara.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["margherita"] = {["name"] = "margherita", ["label"] = "Margherita", ["weight"] = 100, ["type"] = "item", ["image"] = "margherita.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["prosciuttio"] = {["name"] = "prosciuttio", ["label"] = "Prosciuttio E Funghi", ["weight"] = 100, ["type"] = "item", ["image"] = "proscuttio.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["vegetariana"] = {["name"] = "vegetariana", ["label"] = "Vegetariana", ["weight"] = 100, ["type"] = "item", ["image"] = "vegetariana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--PIZZA BOXES
|
||
|
["capricciosabox"] = {["name"] = "capricciosabox", ["label"] = "Boxed Capriccosa", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["diavolabox"] = {["name"] = "diavolabox", ["label"] = "Boxed Diavola", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["marinarabox"] = {["name"] = "marinarabox", ["label"] = "Boxed Marinara", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["margheritabox"] = {["name"] = "margheritabox", ["label"] = "Boxed Margherita", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["prosciuttiobox"] = {["name"] = "prosciuttiobox", ["label"] = "Boxed Prosciuttio E Funghi", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["vegetarianabox"] = {["name"] = "vegetarianabox", ["label"] = "Boxed Vegetariana", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
--INGREDIENTS
|
||
|
["pizzabase"] = {["name"] = "pizzabase", ["label"] = "Pizza Base", ["weight"] = 100, ["type"] = "item", ["image"] = "base2.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pizzadough"] = {["name"] = "pizzadough", ["label"] = "Pizza Dough", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzadough.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["mozz"] = {["name"] = "mozz", ["label"] = "Mozzeralla", ["weight"] = 100, ["type"] = "item", ["image"] = "mozz.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["sauce"] = {["name"] = "sauce", ["label"] = "Tomato Sauce", ["weight"] = 100, ["type"] = "item", ["image"] = "sauce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["salami"] = {["name"] = "salami", ["label"] = "Salami", ["weight"] = 100, ["type"] = "item", ["image"] = "salami.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["squid"] = {["name"] = "squid", ["label"] = "Calamari", ["weight"] = 100, ["type"] = "item", ["image"] = "squid.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pizzmushrooms"] = {["name"] = "pizzmushrooms", ["label"] = "Mushrooms", ["weight"] = 100, ["type"] = "item", ["image"] = "mushrooms.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["olives"] = {["name"] = "olives", ["label"] = "Olives", ["weight"] = 100, ["type"] = "item", ["image"] = "olives.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["basil"] = {["name"] = "basil", ["label"] = "Basil", ["weight"] = 100, ["type"] = "item", ["image"] = "basil.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["pasta"] = {["name"] = "pasta", ["label"] = "Bag of Pasta", ["weight"] = 200, ["type"] = "item", ["image"] = "pasta.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A bag of Pasta", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- osmium cameras
|
||
|
['cctv'] = {['name'] = 'cctv', ['label'] = 'CCTV Camera', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'nmcctv.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Single Heading CCTV Camera (Manually Placeable)', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['360cctv'] = {['name'] = '360cctv', ['label'] = '360D CCTV Cam', ['weight'] = 10000, ['type'] = 'item', ['image'] = 'mcctv.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = '360 Degree Revolvable CCTV Camera (Manually Placeable)', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['camviewer'] = {['name'] = 'camviewer', ['label'] = 'CamViewer', ['weight'] = 7000, ['type'] = 'item', ['image'] = 'camviewer.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Remote Camera Viewer and Controller', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['pd_dashcam'] = {['name'] = 'pd_dashcam', ['label'] = 'Dash Camera [PD]', ['weight'] = 3000, ['type'] = 'item', ['image'] = 'dashcam.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dash Cam, used for attaching to vehicles (MARKED FOR SEIZURE)', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
|
||
|
|
||
|
-- portable chair
|
||
|
["chair62"] = {["name"] = "chair62", ["label"] = "Green Camping Chair", ["weight"] = 100, ["type"] = "item", ["image"] = "np_props_lawnchair2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["chair63"] = {["name"] = "chair63", ["label"] = "Blue Camping Chair", ["weight"] = 100, ["type"] = "item", ["image"] = "np_props_lawnchair.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- jim-recycle stuff
|
||
|
["recyclablematerial"] = {["name"] = "recyclablematerial", ["label"] = "Recycle Box", ["weight"] = 100, ["type"] = "item", ["image"] = "recyclablematerial.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A box of Recyclable Materials", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["bottle"] = {["name"] = "bottle", ["label"] = "Empty Bottle", ["weight"] = 10, ["type"] = "item", ["image"] = "bottle.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A glass bottle", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["can"] = {["name"] = "can", ["label"] = "Empty Can", ["weight"] = 10, ["type"] = "item", ["image"] = "can.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "An empty can, good for recycling", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- FAKE PLATE
|
||
|
['fake_plate'] = {['name'] = 'fake_plate', ['label'] = 'Fake Plate', ['weight'] = 200, ['type'] = 'item', ['image'] = 'np_plate.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Good for hiding your identity', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- JL-BOOSTING JustLazzy
|
||
|
['hacking_device'] = {['name'] = "hacking_device", ['label'] = "Hacking device", ['weight'] = 500, ['type'] = 'item', ['image'] = 'disabler.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A multi purpose hacking device", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- DeliveryBoxBruv
|
||
|
["delivery-box"] = {["name"] = "delivery-box", ["label"] = "Delivery Package", ["weight"] = 10000, ["type"] = "item", ["image"] = "delivery-package.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Package", ["created"] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- HEIST SHIT
|
||
|
-- PAC BANK VAULT UPPER
|
||
|
['inkedmoney'] = {['name'] = "inkedmoney", ['label'] = "Inked Money", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_inked-money-bag.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Inked money bags", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['thermitecharge'] = {['name'] = "thermitecharge", ['label'] = "Thermite Charge", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_thermite_charge.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "High powered thermite charge often used in criminal activity.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['redlaptop'] = {['name'] = "redlaptop", ['label'] = "Red Laptop", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_laptop04.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A red laptop used in PAC upper vault", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- PAC BANK VAULT LOWER
|
||
|
['lvaultusb'] = {['name'] = "lvaultusb", ['label'] = "Lower Vault USB", ['weight'] = 500, ['type'] = 'item', ['image'] = 'lvaultusb.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Lower Vault USB Hacking Device", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['lvaultusbcodes'] = {['name'] = "lvaultusbcodes", ['label'] = "Codes", ['weight'] = 500, ['type'] = 'item', ['image'] = 'lvaultusbcodes.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Vault Codes", ['created'] = nil, ["decay"] = 0.0},
|
||
|
-- Vangelico Jewellery Robbery
|
||
|
['goldlaptop'] = {['name'] = "goldlaptop", ['label'] = "Gold Laptop", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_laptop_prac.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A gold laptop used in PAC lower vault.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['diamond'] = {['name'] = 'diamond', ['label'] = 'Diamond', ['weight'] = 100, ['type'] = 'item', ['image'] = 'np_gallery_diamond.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Looks pretty expensive to me', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- FLEECA
|
||
|
['greenlaptop'] = {['name'] = "greenlaptop", ['label'] = "Green Laptop", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_laptop03.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A green laptop used for fleecas", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- PALETO BANK
|
||
|
['bluelaptop'] = {['name'] = "bluelaptop", ['label'] = "Blue Laptop", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_laptop02.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A blue laptop used for Paleto.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- BOBCAT
|
||
|
["bobcatsecuritycard"] = {["name"] = "bobcatsecuritycard", ["label"] = "Bobcat Security Card", ["weight"] = 1000, ["type"] = "item", ["image"] = "gruppe62.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Provides access to the Bobcat Security building.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- VAR HEIST
|
||
|
["var_helmet"] = {["name"] = "var_helmet", ["label"] = "VAR Headset", ["weight"] = 1000, ["type"] = "item", ["image"] = "np_var_headset.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "VAR Helmet", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["var_medkit"] = {["name"] = "var_medkit", ["label"] = "CPR Medical Kit", ["weight"] = 1000, ["type"] = "item", ["image"] = "firstaid.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "VAR CPR Kit", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["var_usb1"] = {["name"] = "var_usb1", ["label"] = "Master Key (25%)", ["weight"] = 1000, ["type"] = "item", ["image"] = "var_usb.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Combine multiple USBs to create a master encryption key.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["var_usb2"] = {["name"] = "var_usb2", ["label"] = "Master Key (25%)", ["weight"] = 1000, ["type"] = "item", ["image"] = "var_usb.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Combine multiple USBs to create a master encryption key.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["var_usb3"] = {["name"] = "var_usb3", ["label"] = "Master Key (25%)", ["weight"] = 1000, ["type"] = "item", ["image"] = "var_usb.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Combine multiple USBs to create a master encryption key.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["var_usb4"] = {["name"] = "var_usb4", ["label"] = "Master Key (25%)", ["weight"] = 1000, ["type"] = "item", ["image"] = "var_usb.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Combine multiple USBs to create a master encryption key.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["var_usb5"] = {["name"] = "var_usb5", ["label"] = "Master Key (100%)", ["weight"] = 1000, ["type"] = "item", ["image"] = "var_usb.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Master Key to access encrypted data.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- OTHER LAPTOPS AND HEIST SHIT
|
||
|
['golddongle'] = {['name'] = "golddongle", ['label'] = "Gold Dongle", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_heist_usb_gold.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A gold dongle used for aquiring tools.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['yellowlaptop'] = {['name'] = "yellowlaptop", ['label'] = "Yellow Laptop", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_laptop01.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A yellow laptop used for something.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['phonedongle'] = {['name'] = "phonedongle", ['label'] = "Phone Dongle", ['weight'] = 500, ['type'] = 'item', ['image'] = 'np_heist_usb_gold.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A gold dongle used for aquiring tools.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- BANK TRUCK ROBBERY
|
||
|
["hacking-laptop"] = {["name"] = "hacking-laptop", ["label"] = "Hacking Laptop", ["weight"] = 1500, ["type"] = "item", ["image"] = "hacking-laptop.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0},
|
||
|
["gps-device"] = {["name"] = "gps-device", ["label"] = "Gps Device", ["weight"] = 1500, ["type"] = "item", ["image"] = "gps-device.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0},
|
||
|
["gps"] = {["name"] = "gps", ["label"] = "Gps", ["weight"] = 1500, ["type"] = "item", ["image"] = "gps-device.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0},
|
||
|
["kthermite"] = {["name"] = "kthermite", ["label"] = "Thermite", ["weight"] = 500, ["type"] = "item", ["image"] = "thermite.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ["created"] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- Random Fun NP Items
|
||
|
['wingsuit_open'] = {['name'] = "wingsuit_open", ['label'] = "Wingsuit Open", ['weight'] = 2500, ['type'] = 'item', ['image'] = 'np_wingsuit.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Falling, with style!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['wingsuit_closed'] = {['name'] = "wingsuit_closed", ['label'] = "Wingsuit Closed", ['weight'] = 2500, ['type'] = 'item', ['image'] = 'np_wingsuit.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Falling, with style!", ['created'] = nil, ["decay"] = 0.0},
|
||
|
['pailandshovel'] = {['name'] = "pailandshovel", ['label'] = "Pail & Shovel", ['weight'] = 2500, ['type'] = 'item', ['image'] = 'np_props_pail_shovel.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Do you wanna build a sand castle?", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
-- BEE KEEPING STUFF
|
||
|
["beehive"] = {["name"] = "beehive", ["label"] = "Beehive", ["weight"] = 5000, ["type"] = "item", ["image"] = "np_beehive.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Beehive"},
|
||
|
["queen_bee"] = {["name"] = "queen_bee", ["label"] = "Queen Bee", ["weight"] = 2000, ["type"] = "item", ["image"] = "np_bee_queen.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Beehive"},
|
||
|
["honey"] = {["name"] = "honey", ["label"] = "Honey", ["weight"] = 2000, ["type"] = "item", ["image"] = "np_honey.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Beehive"},
|
||
|
["wax"] = {["name"] = "wax", ["label"] = "Wax", ["weight"] = 2000, ["type"] = "item", ["image"] = "np_bees_wax.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Beehive"},
|
||
|
|
||
|
-- FISHING SHIT DOJWUN
|
||
|
-- Regular Fish
|
||
|
['stingray1'] = {['name'] = 'stingray1', ['label'] = 'Stingray', ['weight'] = 3500, ['type'] = 'item', ['image'] = 'stingray.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Stingray', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['flounder'] = {['name'] = 'flounder', ['label'] = 'Fish', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'flounder.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Flounder', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['codfish'] = {['name'] = 'codfish', ['label'] = 'Fish', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'codfish.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Cod', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['mackerel'] = {['name'] = 'mackerel', ['label'] = 'Fish', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'mackerel.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Mackerel', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['bass'] = {['name'] = 'bass', ['label'] = 'Fish', ['weight'] = 1250, ['type'] = 'item', ['image'] = 'bass.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'A normal fish Tatses pretty good!', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Trash Items
|
||
|
['fishingtin'] = {['name'] = 'fishingtin', ['label'] = 'Fishing Tin', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'fishingtin.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Fishing Tin'},
|
||
|
['fishingboot'] = {['name'] = 'fishingboot', ['label'] = 'Fishing Boot', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'fishingboot.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Fishing Boot'},
|
||
|
|
||
|
-- Exotic Fish
|
||
|
['killerwhale'] = {['name'] = 'killerwhale', ['label'] = 'Whale', ['weight'] = 14000, ['type'] = 'item', ['image'] = 'killerwhale.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Killer Whale', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['dolphin'] = {['name'] = 'dolphin', ['label'] = 'Dolphin', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'dolphin.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Dolphin', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['sharkhammer'] = {['name'] = 'sharkhammer', ['label'] = 'Shark', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'sharkhammer.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Hammerhead Shark', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['sharktiger'] = {['name'] = 'sharktiger', ['label'] = 'Shark', ['weight'] = 5000, ['type'] = 'item', ['image'] = 'sharktiger.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Tigershark', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- Gear
|
||
|
['fishbait'] = {['name'] = 'fishbait', ['label'] = 'Fish Bait', ['weight'] = 400, ['type'] = 'item', ['image'] = 'fishbait.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fishing bait', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['fishingrod'] = {['name'] = 'fishingrod', ['label'] = 'Fishing Rod', ['weight'] = 750, ['type'] = 'item', ['image'] = 'fishingrod.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fishing rod for adventures with friends!!'},
|
||
|
['anchor'] = {['name'] = 'anchor', ['label'] = 'Boat Anchor', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'anchor.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Boat Anchor'},
|
||
|
['fishicebox'] = {['name'] = 'fishicebox', ['label'] = 'Fishing Ice Chest', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'fishicebox.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ice Box to store all of your fish'},
|
||
|
|
||
|
-- Fishing Rewards
|
||
|
['fishingloot'] = {['name'] = 'fishingloot', ['label'] = 'Metal Box', ['weight'] = 500, ['type'] = 'item', ['image'] = 'fishingloot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Seems to be a corroded from the salt water, Should be easy to open', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['fishinglootbig'] = {['name'] = 'fishinglootbig', ['label'] = 'Treasure Chest', ['weight'] = 2500, ['type'] = 'item', ['image'] = 'fishinglootbig.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The lock seems to be intact, Might need a key', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['fishingkey'] = {['name'] = 'fishingkey', ['label'] = 'Corroded Key', ['weight'] = 100, ['type'] = 'item', ['image'] = 'fishingkey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A weathered key that looks usefull', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['fishtacklebox'] = {['name'] = 'fishtacklebox', ['label'] = 'Tackle Box', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'fishtacklebox.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Seems to be left over tackle box from another fisherman', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['pearlscard'] = {['name'] = 'pearlscard', ['label'] = 'Pearls Seafood', ['weight'] = 100, ['type'] = 'item', ['image'] = 'pearlscard.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A special member of Pearl\'s Seafood Restaurant'},
|
||
|
|
||
|
|
||
|
--VANILLA UNICORN
|
||
|
--Drink Ingredients
|
||
|
["cubasil"] = {["name"] = "cubasil", ["label"] = "Cucumber Basil", ["weight"] = 200, ["type"] = "item", ["image"] = "cubasil.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Hand full of Cucumber and Basil", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["mintleaf"] = {["name"] = "mintleaf", ["label"] = "Mint", ["weight"] = 200, ["type"] = "item", ["image"] = "mint.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Mint Leaves", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["peach"] = {["name"] = "peach", ["label"] = "Peach", ["weight"] = 200, ["type"] = "item", ["image"] = "peach.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A peach", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["strawberry"] = {["name"] = "strawberry", ["label"] = "Strawberries", ["weight"] = 200, ["type"] = "item", ["image"] = "strawberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Strawberries", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["lime"] = {["name"] = "lime", ["label"] = "Lime", ["weight"] = 200, ["type"] = "item", ["image"] = "lime.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Lime.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
["lemon"] = {["name"] = "lemon", ["label"] = "Lemon", ["weight"] = 200, ["type"] = "item", ["image"] = "lemon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Lemon.", ['created'] = nil, ["decay"] = 0.0},
|
||
|
|
||
|
["midori"] = {["name"] = "midori", ["label"] = "Midori", ["weight"] = 200, ["type"] = "item", ["image"] = "midori.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Midori", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pinejuice"] = {["name"] = "pinejuice", ["label"] = "Pineapple Juice", ["weight"] = 200, ["type"] = "item", ["image"] = "pinejuice.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Pineapple Juice", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["prosecco"] = {["name"] = "prosecco", ["label"] = "Prosecco", ["weight"] = 200, ["type"] = "item", ["image"] = "prosecco.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Prosecco", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["tequila"] = {["name"] = "tequila", ["label"] = "Tequila", ["weight"] = 200, ["type"] = "item", ["image"] = "tequila.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Tequila", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["triplsec"] = {["name"] = "triplsec", ["label"] = "Triple Sec", ["weight"] = 200, ["type"] = "item", ["image"] = "triplesec.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Triple Sec", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["cranberry"] = {["name"] = "cranberry", ["label"] = "Cranberry Juice", ["weight"] = 200, ["type"] = "item", ["image"] = "cranberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cranberry Juice", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["gin"] = {["name"] = "gin", ["label"] = "Gin", ["weight"] = 200, ["type"] = "item", ["image"] = "gin.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Gin", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["rum"] = {["name"] = "rum", ["label"] = "Rum", ["weight"] = 200, ["type"] = "item", ["image"] = "rum.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Rum", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["amaretto"] = {["name"] = "amaretto", ["label"] = "Amaretto", ["weight"] = 200, ["type"] = "item", ["image"] = "amaretto.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Amaretto", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Cocktails
|
||
|
["amarettosour"] = {["name"] = "amarettosour", ["label"] = "Amaretto Sour", ["weight"] = 200, ["type"] = "item", ["image"] = "amarettosour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Amaretto Sour", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bellini"] = {["name"] = "bellini", ["label"] = "Bellini", ["weight"] = 200, ["type"] = "item", ["image"] = "bellini.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Bellini", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cosmopolitan"] = {["name"] = "cosmopolitan", ["label"] = "Cosmopolitan", ["weight"] = 200, ["type"] = "item", ["image"] = "cosmopolitan.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cosmopolitan", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["longisland"] = {["name"] = "longisland", ["label"] = "Long Island Ice tea", ["weight"] = 200, ["type"] = "item", ["image"] = "longisland.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Long Island Ice Tea", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["margarita"] = {["name"] = "margarita", ["label"] = "Margarita", ["weight"] = 200, ["type"] = "item", ["image"] = "margarita.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Margarita", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pinacolada"] = {["name"] = "pinacolada", ["label"] = "Pina Colada", ["weight"] = 200, ["type"] = "item", ["image"] = "pinacolada.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Pine Colada", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sangria"] = {["name"] = "sangria", ["label"] = "Sangria", ["weight"] = 200, ["type"] = "item", ["image"] = "sangria.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sangria", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["screwdriver"] = {["name"] = "screwdriver", ["label"] = "Screwdriver", ["weight"] = 200, ["type"] = "item", ["image"] = "screwdriver.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Screwdriver", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["strawdaquiri"] = {["name"] = "strawdaquiri", ["label"] = "Strawberry Daquiri", ["weight"] = 200, ["type"] = "item", ["image"] = "strawdaquiri.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Strawberry Daquiri", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["strawmargarita"] = {["name"] = "strawmargarita", ["label"] = "Strawberry Margarita", ["weight"] = 200, ["type"] = "item", ["image"] = "strawmargarita.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Starberry Margarita", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--BEERS
|
||
|
["dusche"] = {["name"] = "dusche", ["label"] = "Dusche Gold", ["weight"] = 100, ["type"] = "item", ["image"] = "dusche.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["logger"] = {["name"] = "logger", ["label"] = "Logger Beer", ["weight"] = 100, ["type"] = "item", ["image"] = "logger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pisswasser"] = {["name"] = "pisswasser", ["label"] = "Pißwasser", ["weight"] = 100, ["type"] = "item", ["image"] = "pisswaser1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pisswasser2"] = {["name"] = "pisswasser2", ["label"] = "Pißwasser Stout", ["weight"] = 100, ["type"] = "item", ["image"] = "pisswaser2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pisswasser3"] = {["name"] = "pisswasser3", ["label"] = "Pißwasser Pale Ale", ["weight"] = 100, ["type"] = "item", ["image"] = "pisswaser3.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Food
|
||
|
["nplate"] = {["name"] = "nplate", ["label"] = "Nachos Plate", ["weight"] = 200, ["type"] = "item", ["image"] = "nplate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A plate of nachos and cheese", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["vusliders"] = {["name"] = "vusliders", ["label"] = "Sliders", ["weight"] = 200, ["type"] = "item", ["image"] = "sliders.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Sliders", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["vutacos"] = {["name"] = "vutacos", ["label"] = "Tacos", ["weight"] = 200, ["type"] = "item", ["image"] = "tacos.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Tacos", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["tots"] = {["name"] = "tots", ["label"] = "Tits or Tots", ["weight"] = 200, ["type"] = "item", ["image"] = "tots.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Sexy Tots", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Food Ingredients
|
||
|
["nachos"] = {["name"] = "nachos", ["label"] = "Nachos", ["weight"] = 200, ["type"] = "item", ["image"] = "nachos.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bag of Nachos", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["potato"] = {["name"] = "potato", ["label"] = "Potatoes", ["weight"] = 500, ["type"] = "item", ["image"] = "potatoes.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Food", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Ingredients
|
||
|
["jimsausages"] = {["name"] = "jimsausages", ["label"] = "Sausages", ["weight"] = 100, ["type"] = "item", ["image"] = "jimsausages.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["jimeggs"] = {["name"] = "jimeggs", ["label"] = "Eggs", ["weight"] = 100, ["type"] = "item", ["image"] = "jimeggs.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ham"] = {["name"] = "ham", ["label"] = "Ham", ["weight"] = 100, ["type"] = "item", ["image"] = "ham.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["fish"] = {["name"] = "fish", ["label"] = "CatFish", ["weight"] = 200, ["type"] = "item", ["image"] = "fish.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Catfish", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["meat"] = {["name"] = "meat", ["label"] = "Meat", ["weight"] = 200, ["type"] = "item", ["image"] = "meat.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A slab of Meat", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["lettuce"] = {["name"] = "lettuce", ["label"] = "Lettuce", ["weight"] = 100, ["type"] = "item", ["image"] = "lettuce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Some big taco brother", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cheddar"] = {["name"] = "cheddar", ["label"] = "Cheddar Slice", ["weight"] = 500, ["type"] = "item", ["image"] = "cheddar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Slice of Cheese", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- jim tequila
|
||
|
--Cocktails
|
||
|
["b52"] = {["name"] = "b52", ["label"] = "B-52", ["weight"] = 200, ["type"] = "item", ["image"] = "b52.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "B-52 Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["brussian"] = {["name"] = "brussian", ["label"] = "Black Russian", ["weight"] = 200, ["type"] = "item", ["image"] = "brussian.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Black Russian Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bkamikaze"] = {["name"] = "bkamikaze", ["label"] = "Blue Kamikaze", ["weight"] = 200, ["type"] = "item", ["image"] = "bkamikaze.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Blue Kamikaze Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cappucc"] = {["name"] = "cappucc", ["label"] = "Cappuccinotini", ["weight"] = 200, ["type"] = "item", ["image"] = "cappucc.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cappuccinotini Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ccookie"] = {["name"] = "ccookie", ["label"] = "Cranberry Cookie", ["weight"] = 200, ["type"] = "item", ["image"] = "ccookie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cranberry Cookie Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["iflag"] = {["name"] = "iflag", ["label"] = "Irish Flag", ["weight"] = 200, ["type"] = "item", ["image"] = "iflag.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Irish Flag Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["kamikaze"] = {["name"] = "kamikaze", ["label"] = "Kamikaze", ["weight"] = 200, ["type"] = "item", ["image"] = "kamikaze.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Kamikase Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sbullet"] = {["name"] = "sbullet", ["label"] = "Silver Bullet", ["weight"] = 200, ["type"] = "item", ["image"] = "sbullet.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Silver Bullet Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["voodoo"] = {["name"] = "voodoo", ["label"] = "Voodoo", ["weight"] = 200, ["type"] = "item", ["image"] = "voodoo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Voodoo Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["woowoo"] = {["name"] = "woowoo", ["label"] = "Woo Woo", ["weight"] = 200, ["type"] = "item", ["image"] = "woowoo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Woowoo Cocktail", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Drink Ingredients
|
||
|
["orange"] = {["name"] = "orange", ["label"] = "Orange", ["weight"] = 200, ["type"] = "item", ["image"] = "orange.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "An Orange.", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["lime"] = {["name"] = "lime", ["label"] = "Lime", ["weight"] = 200, ["type"] = "item", ["image"] = "lime.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Lime.", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["chocolate"] = {["name"] = "chocolate", ["label"] = "Chocolate", ["weight"] = 200, ["type"] = "item", ["image"] = "chocolate.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Chocolate Bar", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["cranberry"] = {["name"] = "cranberry", ["label"] = "Cranberry Juice", ["weight"] = 200, ["type"] = "item", ["image"] = "cranberry.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cranberry Juice", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["schnapps"] = {["name"] = "schnapps", ["label"] = "Peach Schnapps", ["weight"] = 200, ["type"] = "item", ["image"] = "schnapps.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Peach Schnapps", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["gin"] = {["name"] = "gin", ["label"] = "Gin", ["weight"] = 200, ["type"] = "item", ["image"] = "gin.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Gin", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["scotch"] = {["name"] = "scotch", ["label"] = "Scotch", ["weight"] = 200, ["type"] = "item", ["image"] = "scotch.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Scotch", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["rum"] = {["name"] = "rum", ["label"] = "Rum", ["weight"] = 200, ["type"] = "item", ["image"] = "rum.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Rum", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["icream"] = {["name"] = "icream", ["label"] = "Irish Cream", ["weight"] = 200, ["type"] = "item", ["image"] = "icream.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Irish Cream Liquer", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["amaretto"] = {["name"] = "amaretto", ["label"] = "Amaretto", ["weight"] = 200, ["type"] = "item", ["image"] = "amaretto.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Amaretto", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["curaco"] = {["name"] = "curaco", ["label"] = "Curaco", ["weight"] = 200, ["type"] = "item", ["image"] = "curaco.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bottle of Curaco", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--BEERS
|
||
|
["ambeer"] = {["name"] = "ambeer", ["label"] = "AM Beer", ["weight"] = 100, ["type"] = "item", ["image"] = "ambeer.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["dusche"] = {["name"] = "dusche", ["label"] = "Dusche Gold", ["weight"] = 100, ["type"] = "item", ["image"] = "dusche.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["logger"] = {["name"] = "logger", ["label"] = "Logger Beer", ["weight"] = 100, ["type"] = "item", ["image"] = "logger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pisswasser"] = {["name"] = "pisswasser", ["label"] = "Pißwasser", ["weight"] = 100, ["type"] = "item", ["image"] = "pisswaser1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pisswasser2"] = {["name"] = "pisswasser2", ["label"] = "Pißwasser Stout", ["weight"] = 100, ["type"] = "item", ["image"] = "pisswaser2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pisswasser3"] = {["name"] = "pisswasser3", ["label"] = "Pißwasser Pale Ale", ["weight"] = 100, ["type"] = "item", ["image"] = "pisswaser3.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--SODA
|
||
|
["sprunk"] = {["name"] = "sprunk", ["label"] = "Sprunk", ["weight"] = 100, ["type"] = "item", ["image"] = "sprunk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sprunklight"] = {["name"] = "sprunklight", ["label"] = "Sprunk Light", ["weight"] = 100, ["type"] = "item", ["image"] = "sprunklight.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ecola"] = {["name"] = "ecola", ["label"] = "eCola", ["weight"] = 100, ["type"] = "item", ["image"] = "ecola.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30)},
|
||
|
["ecolalight"] = {["name"] = "ecolalight", ["label"] = "eCola Light", ["weight"] = 100, ["type"] = "item", ["image"] = "ecolalight.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
---- Jim Beanmachine
|
||
|
["beancoffee"] = {["name"] = "beancoffee", ["label"] = "Coffe Beans", ["weight"] = 100, ["type"] = "item", ["image"] = "beancoffee.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["beandonut"] = {["name"] = "beandonut", ["label"] = "Donut", ["weight"] = 100, ["type"] = "item", ["image"] = "popdonut.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["rhinohorn"] = {["name"] = "rhinohorn", ["label"] = "Rhino Horn", ["weight"] = 100, ["type"] = "item", ["image"] = "rhinohorn.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["oystershell"] = {["name"] = "oystershell", ["label"] = "Oyster Shell", ["weight"] = 100, ["type"] = "item", ["image"] = "oyster.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["watermelon"] = {["name"] = "watermelon", ["label"] = "WaterMelon Slice", ["weight"] = 100, ["type"] = "item", ["image"] = "watermelon.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["bigfruit"] = {["name"] = "bigfruit", ["label"] = "The Big Fruit", ["weight"] = 100, ["type"] = "item", ["image"] = "bigfruit.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["highnoon"] = {["name"] = "highnoon", ["label"] = "Highnoon", ["weight"] = 100, ["type"] = "item", ["image"] = "highnoon.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["speedball"] = {["name"] = "speedball", ["label"] = "The SpeedBall", ["weight"] = 100, ["type"] = "item", ["image"] = "speedball.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["gunkaccino"] = {["name"] = "gunkaccino", ["label"] = "The Gunkaccino", ["weight"] = 100, ["type"] = "item", ["image"] = "gunkaccino.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bratte"] = {["name"] = "bratte", ["label"] = "The Bratte", ["weight"] = 100, ["type"] = "item", ["image"] = "bratte.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["flusher"] = {["name"] = "flusher", ["label"] = "The Flusher", ["weight"] = 100, ["type"] = "item", ["image"] = "flusher.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ecocoffee"] = {["name"] = "ecocoffee", ["label"] = "The Eco-ffee", ["weight"] = 100, ["type"] = "item", ["image"] = "ecoffee.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["caffeagra"] = {["name"] = "caffeagra", ["label"] = "Caffeagra", ["weight"] = 100, ["type"] = "item", ["image"] = "caffeagra.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["chocolate"] = {["name"] = "chocolate", ["label"] = "Chocolate", ["weight"] = 200, ["type"] = "item", ["image"] = "chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Chocolate Bar", ['hunger'] = math.random(10, 20), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cheesecake"] = {["name"] = "cheesecake", ["label"] = "Cheese Cake", ["weight"] = 100, ["type"] = "item", ["image"] = "cheesecake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["crisps"] = {["name"] = "crisps", ["label"] = "Crisps", ["weight"] = 100, ["type"] = "item", ["image"] = "chips.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sugar"] = {["name"] = "sugar", ["label"] = "Sugar", ["weight"] = 100, ["type"] = "item", ["image"] = "sugar.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(10, 20), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["orange"] = {["name"] = "orange", ["label"] = "Orange", ["weight"] = 200, ["type"] = "item", ["image"] = "orange.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "An Orange.", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["milk"] = {["name"] = "milk", ["label"] = "Milk", ["weight"] = 300, ["type"] = "item", ["image"] = "burger-milk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Carton of Milk", ['thirst'] = math.random(10, 20), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["chickenbreast"] = {["name"] = "chickenbreast", ["label"] = "Chicken Breast", ["weight"] = 100, ["type"] = "item", ["image"] = "chickenbreast.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(10, 20), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
|
||
|
-- Billiard
|
||
|
["glasscup"] = {["name"] = "glasscup", ["label"] = "Glass Cup", ["weight"] = 400, ["type"] = "item", ["image"] = "glasscup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Glass Cup"},
|
||
|
["smallglasscup"] = {["name"] = "smallglasscup", ["label"] = "Small Glass Cup", ["weight"] = 400, ["type"] = "item", ["image"] = "smallglasscup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Small Glass Cup"},
|
||
|
["coffeecup"] = {["name"] = "coffeecup", ["label"] = "Empty Coffee Bottle", ["weight"] = 400, ["type"] = "item", ["image"] = "coffeecup.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Empty Coffee Bottle"},
|
||
|
["coffeebeans"] = {["name"] = "coffeebeans", ["label"] = "Regular Coffee Beans", ["weight"] = 400, ["type"] = "item", ["image"] = "coffeebeans.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Regular Coffee Beans"},
|
||
|
|
||
|
-- ATM ROBBERY
|
||
|
['towingrope'] = {['name'] = 'towingrope', ['label'] = 'Towing Rope', ['weight'] = 200, ['type'] = 'item', ['image'] = 'expert_towingrope.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Towing Rope'},
|
||
|
['atmobject'] = {['name'] = 'atmobject', ['label'] = 'ATM', ['weight'] = 200, ['type'] = 'item', ['image'] = 'expert_atmobj.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'ATM'},
|
||
|
|
||
|
|
||
|
-- Up N Atoms
|
||
|
-- Breakfast
|
||
|
["atoms-bacon-eggs"] = {["name"] = "atoms-bacon-eggs", ["label"] = "Atoms Bacon n Eggs", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-bacon-eggs.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cooked Bacon n Eggs with Toast", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-bacon-rolls"] = {["name"] = "atoms-bacon-rolls", ["label"] = "Atoms Bacon Rolls", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-bacon-rolls.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cooked Bacon Rolls", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-eggs-benedict"] = {["name"] = "atoms-eggs-benedict", ["label"] = "Atoms Egg Benedict", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-eggs-benedict.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cooked Eggs Benedict", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-eggs-florentine"] = {["name"] = "atoms-eggs-florentine", ["label"] = "Atoms Egg Florentine", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-eggs-florentine.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cooked Eggs Florentine", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-french-toast-bacon"] = {["name"] = "atoms-french-toast-bacon", ["label"] = "Atoms French Toast", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-french-toast-bacon.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cooked French Toast With Bacon", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-hashbrown"] = {["name"] = "atoms-hashbrown", ["label"] = "Atoms Hashbrowns", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-hashbrown.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cooked Hashbrowns", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-sausages"] = {["name"] = "atoms-sausages", ["label"] = "Atoms Sausages", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-sausages.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cooked Sausages", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Burgers
|
||
|
["atoms-bacon-burger"] = {["name"] = "atoms-bacon-burger", ["label"] = "Atoms Bacon Burger", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-bacon-burger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Grilled Bacon Burger", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-burger"] = {["name"] = "atoms-burger", ["label"] = "Atoms Cheese Burger", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-burger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Grilled Classic Cheese Burger", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken-burger"] = {["name"] = "atoms-chicken-burger", ["label"] = "Atoms Chicken Burger", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken-burger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Grilled Chicken Burger", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-db-burger"] = {["name"] = "atoms-db-burger", ["label"] = "Atoms Double Cheese Burger", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-db-burger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Grilled Double Cheese Burger", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-db-chicken-burger"] = {["name"] = "atoms-db-chicken-burger", ["label"] = "Atoms Double Chicken Burger", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-db-chicken-burger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Grilled Double Chicken Burger", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-pickle-burger"] = {["name"] = "atoms-pickle-burger", ["label"] = "Atoms Pickle Burger", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-pickle-burger.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Grilled Pickle Burger", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-sandwich"] = {["name"] = "atoms-sandwich", ["label"] = "Atoms Ham Sandwich", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-sandwich.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Classic Ham Sandwich", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Chicken
|
||
|
["atoms-chicken-fillets"] = {["name"] = "atoms-chicken-fillets", ["label"] = "Atoms Chicken Fillets", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken-fillets.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chicken Fillets", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken-salad"] = {["name"] = "atoms-chicken-salad", ["label"] = "Atoms Chicken Salad", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken-salad.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chicken Salad", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken-sandwich"] = {["name"] = "atoms-chicken-sandwich", ["label"] = "Atoms Chicken Sandwich", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken-sandwich.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Classic Chicken Sandwich", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken-stars"] = {["name"] = "atoms-chicken-stars", ["label"] = "Atoms Chicken Stars", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken-stars.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chicken Nuggets In The Shape Of A Star", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-grilled-chicken"] = {["name"] = "atoms-grilled-chicken", ["label"] = "Atoms Grilled Chicken", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-grilled-chicken.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Grilled Chicken Fillets", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-hunk-o-hen"] = {["name"] = "atoms-hunk-o-hen", ["label"] = "Atoms Hunks O Hen", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-hunk-o-hen.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chicken Chunks", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Drinks
|
||
|
["atoms-ecola"] = {["name"] = "atoms-ecola", ["label"] = "Atoms Ecola", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-ecola.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ecola!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-hercules"] = {["name"] = "atoms-hercules", ["label"] = "Atoms Hercules", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-hercules.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Hercules!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-junk"] = {["name"] = "atoms-junk", ["label"] = "Atoms Junk Energy!", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-junk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Junk Energy!!!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-orangtang"] = {["name"] = "atoms-orangtang", ["label"] = "Atoms Orang O Tang", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-orangtang.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "OrangTang!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-raine"] = {["name"] = "atoms-raine", ["label"] = "Atoms Raine Water", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-raine.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ice Cold Water Bottle", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-sprunk"] = {["name"] = "atoms-sprunk", ["label"] = "Atoms Sprunk", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-sprunk.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Spunk!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-water"] = {["name"] = "atoms-water", ["label"] = "Atoms Water Bottle", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-water.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ice Cold Water Bottle", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Ingredients
|
||
|
["atoms-bacon"] = {["name"] = "atoms-bacon", ["label"] = "Atoms Cooked Bacon", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-bacon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-beef-patty"] = {["name"] = "atoms-beef-patty", ["label"] = "Atoms Cooked Beef Patty", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-beef-patty.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-bread"] = {["name"] = "atoms-bread", ["label"] = "Atoms Fresh Bread", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-bread.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-bun"] = {["name"] = "atoms-bun", ["label"] = "Atoms Fresh Bun", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-bun.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-cheddar-cheese-slices"] = {["name"] = "atoms-cheddar-cheese-slices", ["label"] = "Atoms Fresh Cheddar Cheese", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-cheddar-cheese-slices.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken-patty"] = {["name"] = "atoms-chicken-patty", ["label"] = "Atoms Cooked Chicken Patty", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken-patty.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken-slices"] = {["name"] = "atoms-chicken-slices", ["label"] = "Atoms Fresh Chicken Slices", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken-slices.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken"] = {["name"] = "atoms-chicken", ["label"] = "Atoms Cooked Chicken", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-eggs"] = {["name"] = "atoms-eggs", ["label"] = "Atoms Fresh Eggs", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-eggs.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-english-muffin"] = {["name"] = "atoms-english-muffin", ["label"] = "Atoms English Muffin", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-english-muffin.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-frozen-sausages"] = {["name"] = "atoms-frozen-sausages", ["label"] = "Atoms Frozen Sausages", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-frozen-sausages.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-ham-slices"] = {["name"] = "atoms-ham-slices", ["label"] = "Atoms Fresh Ham Slices", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-ham-slices.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-lettuce"] = {["name"] = "atoms-lettuce", ["label"] = "Atoms Fresh Lettuce", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-lettuce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-mozzarella-cheese-slices"] = {["name"] = "atoms-mozzarella-cheese-slices", ["label"] = "Atoms Fresh Mozzarella Cheese", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-mozzarella-cheese-slices.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-pickles"] = {["name"] = "atoms-pickles", ["label"] = "Atoms Fresh Pickles", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-pickles.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-potatos"] = {["name"] = "atoms-potatos", ["label"] = "Atoms Fresh Potatos", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-potatos.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-raw-bacon"] = {["name"] = "atoms-raw-bacon", ["label"] = "Atoms Frozen Bacon", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-raw-bacon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-raw-beef-patty"] = {["name"] = "atoms-raw-beef-patty", ["label"] = "Atoms Frozen Beef Patty", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-raw-beef-patty.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-raw-chicken-patty"] = {["name"] = "atoms-raw-chicken-patty", ["label"] = "Atoms Frozen Chicken Patty", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-raw-chicken-patty.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-raw-chicken"] = {["name"] = "atoms-raw-chicken", ["label"] = "Atoms Frozen Chicken", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-raw-chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-spinach"] = {["name"] = "atoms-spinach", ["label"] = "Atoms Fresh Spinach", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-spinach.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-tomato"] = {["name"] = "atoms-tomato", ["label"] = "Atoms Fresh Tomato", ["weight"] = 250, ["type"] = "item", ["image"] = "atoms-tomato.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient!", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Meal Deal Packages
|
||
|
["atoms-bacon-burger-meal"] = {["name"] = "atoms-bacon-burger-meal", ["label"] = "Atoms Bacon Burger Meal", ["weight"] = 300, ["type"] = "item", ["image"] = "atoms-bacon-burger-meal.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Contains A Bacon Burger, Hashbrown and a Drink", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-burger-meal"] = {["name"] = "atoms-burger-meal", ["label"] = "Atoms Burger Meal", ["weight"] = 300, ["type"] = "item", ["image"] = "atoms-burger-meal.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Contains A Classic Burger, Hashbrown and a Drink", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-chicken-burger-meal"] = {["name"] = "atoms-chicken-burger-meal", ["label"] = "Atoms Chicken Burger Meal", ["weight"] = 300, ["type"] = "item", ["image"] = "atoms-chicken-burger-meal.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Contains A Classic Chicken Burger, Hashbrown and a Drink", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-db-burger-meal"] = {["name"] = "atoms-db-burger-meal", ["label"] = "Atoms Double Burger Meal", ["weight"] = 450, ["type"] = "item", ["image"] = "atoms-db-burger-meal.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Contains A Double Burger, Hashbrown and a Drink", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-db-chicken-burger-meal"] = {["name"] = "atoms-db-chicken-burger-meal", ["label"] = "Atoms Double Chicken Burger Meal", ["weight"] = 450, ["type"] = "item", ["image"] = "atoms-db-chicken-burger-meal.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Contains A Double Chicken Burger, Hashbrown and a Drink", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["atoms-pickle-burger-meal"] = {["name"] = "atoms-pickle-burger-meal", ["label"] = "Atoms Pickle Burger Meal", ["weight"] = 300, ["type"] = "item", ["image"] = "atoms-pickle-burger-meal.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Contains A Pickle Burger, Hashbrown and a Drink", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- HUNTING
|
||
|
["meatdeer"] = {["name"] = "meatdeer", ["label"] = "Deer Horns", ["weight"] = 100, ["type"] = "item", ["image"] = "deerhorns.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Deer Horns"},
|
||
|
["meatpig"] = {["name"] = "meatpig", ["label"] = "Pig Meat", ["weight"] = 100, ["type"] = "item", ["image"] = "pigpelt.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Pig Meat"},
|
||
|
["meatboar"] = {["name"] = "meatboar", ["label"] = "Boar Tusks", ["weight"] = 100, ["type"] = "item", ["image"] = "boartusks.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Boar Tusks"},
|
||
|
["meatlion"] = {["name"] = "meatlion", ["label"] = "Cougar Claws", ["weight"] = 100, ["type"] = "item", ["image"] = "cougarclaw.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Cougar Claw"},
|
||
|
["meatcow"] = {["name"] = "meatcow", ["label"] = "Cow Pelt", ["weight"] = 100, ["type"] = "item", ["image"] = "cowpelt.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Cow Pelt"},
|
||
|
["cowpelt"] = {["name"] = "cowpelt", ["label"] = "Cow Pelt", ["weight"] = 100, ["type"] = "item", ["image"] = "cowpelt.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Cow Pelt"},
|
||
|
["meatrabbit"] = {["name"] = "meatrabbit", ["label"] = "Rabbit Fur", ["weight"] = 100, ["type"] = "item", ["image"] = "rabbitfur.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Rabbit Fur"},
|
||
|
["meatbird"] = {["name"] = "meatbird", ["label"] = "Bird Feather", ["weight"] = 100, ["type"] = "item", ["image"] = "birdfeather.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Bird Feather"},
|
||
|
["meatcoyote"] = {["name"] = "meatcoyote", ["label"] = "Coyote Pelt", ["weight"] = 100, ["type"] = "item", ["image"] = "coyotepelt.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Coyote Pelt"},
|
||
|
["huntingbait"] = {["name"] = "huntingbait", ["label"] = "Hunting Bait", ["weight"] = 150, ["type"] = "item", ["image"] = "huntingbait.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Hunting Bait"},
|
||
|
|
||
|
-- QB-BEANMACHINE
|
||
|
--Drinks
|
||
|
["bean-cafe"] = {["name"] = "bean-cafe", ["label"] = "Coffee", ["weight"] = 1000, ["type"] = "item", ["image"] = "coffee.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Coffee", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bean-latte"] = {["name"] = "bean-latte", ["label"] = "Latte", ["weight"] = 1000, ["type"] = "item", ["image"] = "latte.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Latte", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bean-cappuccino"] = {["name"] = "bean-cappuccino", ["label"] = "Cappuccino", ["weight"] = 1000, ["type"] = "item", ["image"] = "cappuccino.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cappuccino", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bean-mocha"] = {["name"] = "bean-mocha", ["label"] = "Mocha", ["weight"] = 1000, ["type"] = "item", ["image"] = "mocha.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Mocha", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bean-cmilkshake"] = {["name"] = "bean-cmilkshake", ["label"] = "Chocolate Milkshake", ["weight"] = 1000, ["type"] = "item", ["image"] = "cmilkshake.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chocolate Milkshake", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bean-icetea"] = {["name"] = "bean-icetea", ["label"] = "Ice Tea", ["weight"] = 1000, ["type"] = "item", ["image"] = "icetea.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Icetea", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--Foods
|
||
|
["cookie"] = {["name"] = "cookies", ["label"] = "Cookie", ["weight"] = 500, ["type"] = "item", ["image"] = "cookies.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cookies", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["donut"] = {["name"] = "donut", ["label"] = "Donut", ["weight"] = 500, ["type"] = "item", ["image"] = "donut.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Donut", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["croissant"] = {["name"] = "croissant", ["label"] = "Croissant", ["weight"] = 500, ["type"] = "item", ["image"] = "croissant.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Croissant", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cupchocolate"] = {["name"] = "cupchocolate", ["label"] = "Chocolate Cupcake", ["weight"] = 500, ["type"] = "item", ["image"] = "cupchocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chocolate Cupcake", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--Ingrediants
|
||
|
["cocabeans"] = {["name"] = "cocabeans", ["label"] = "Coca Beans", ["weight"] = 100, ["type"] = "item", ["image"] = "cocabeans.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Coca Beans", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["chocolate"] = {["name"] = "chocolate", ["label"] = "Chocolate", ["weight"] = 100, ["type"] = "item", ["image"] = "chocolate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chocolate", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["whipcream"] = {["name"] = "whipcream", ["label"] = "Whipcream", ["weight"] = 100, ["type"] = "item", ["image"] = "whipcream.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Whipcream", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["milkbottle"] = {["name"] = "milkbottle", ["label"] = "Milk Bottle", ["weight"] = 100, ["type"] = "item", ["image"] = "milkbottle.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Milk Bottle", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["teabag"] = {["name"] = "teabag", ["label"] = "Tea Bag", ["weight"] = 100, ["type"] = "item", ["image"] = "teabag.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Tea Bag", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sprinkles"] = {["name"] = "sprinkles", ["label"] = "Sprinkles", ["weight"] = 100, ["type"] = "item", ["image"] = "sprinkles.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sprinkles", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
-- Vangelico Heist
|
||
|
['paintingg'] = {['name'] = 'paintingg', ['label'] = 'Painting G', ['weight'] = 120, ['type'] = 'item', ['image'] = 'paintingg.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Painting G'},
|
||
|
['paintingf'] = {['name'] = 'paintingf', ['label'] = 'Painting F', ['weight'] = 120, ['type'] = 'item', ['image'] = 'paintingf.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Painting F'},
|
||
|
['paintingh'] = {['name'] = 'paintingh', ['label'] = 'Painting H', ['weight'] = 120, ['type'] = 'item', ['image'] = 'paintingh.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Painting H'},
|
||
|
['paintingj'] = {['name'] = 'paintingj', ['label'] = 'Painting J', ['weight'] = 120, ['type'] = 'item', ['image'] = 'paintingj.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Painting J'},
|
||
|
|
||
|
['vanDiamond'] = {['name'] = 'vanDiamond', ['label'] = 'Van Diamond', ['weight'] = 120, ['type'] = 'item', ['image'] = 'vandiamond.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Van Diamond'},
|
||
|
['vanPanther'] = {['name'] = 'vanPanther', ['label'] = 'Van Panther', ['weight'] = 120, ['type'] = 'item', ['image'] = 'vanpanther.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Van Panther'},
|
||
|
['vanNecklace'] = {['name'] = 'vanNecklace', ['label'] = 'Van Necklace', ['weight'] = 120, ['type'] = 'item', ['image'] = 'vannecklace.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Van Necklace'},
|
||
|
['vanBottle'] = {['name'] = 'vanBottle', ['label'] = 'Van Bottle', ['weight'] = 120, ['type'] = 'item', ['image'] = 'vanbottle.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Van Bottle'},
|
||
|
|
||
|
|
||
|
-- Cigarettes
|
||
|
['redwoodcigs'] = {['name'] = 'redwoodcigs', ['label'] = 'Redwood Cigarettes', ['weight'] = 250, ["degrade"] = 1.0, ['type'] = 'item', ['image'] = 'redwoodcigs.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack of Cigarettes, Made in USA', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cardiaquecigs'] = {['name'] = 'cardiaquecigs', ['label'] = 'Cardiaque Cigarettes', ['weight'] = 250, ["degrade"] = 1.0, ['type'] = 'item', ['image'] = 'cardiaquecigs.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack of Cigarettes, Made in USA', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['yukoncigs'] = {['name'] = 'yukoncigs', ['label'] = 'Yukon Cigarettes', ['weight'] = 250, ["degrade"] = 1.0, ['type'] = 'item', ['image'] = 'yukoncigs.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack of Menthol Cigarettes, Made in USA', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cigarette"] = {["name"] = "cigarette", ["label"] = "Cigarette", ["weight"] = 250, ["type"] = "item", ["image"] = "cigarette.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Smokeable Tobacco", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- GUNRACK
|
||
|
["policegunrack"] = {
|
||
|
["name"] = "policegunrack",
|
||
|
["label"] = "Police Gun Rack",
|
||
|
["weight"] = 15000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "policegunrack.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Gun rack for police vehicles",
|
||
|
['created'] = nil
|
||
|
},
|
||
|
-- optional if you want to open rack by keys
|
||
|
["gunrackkey"] = {
|
||
|
["name"] = "gunrackkey",
|
||
|
["label"] = "Police Gun Key",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "gunrackkey.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "A key to open gun rack",
|
||
|
['created'] = nil
|
||
|
},
|
||
|
["keycuttingmachine"] = {
|
||
|
["name"] = "keycuttingmachine",
|
||
|
["label"] = "Key Cutting Machine",
|
||
|
["weight"] = 40000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "keycuttingmachine.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "A Machine to Cut Keys",
|
||
|
['created'] = nil
|
||
|
},
|
||
|
|
||
|
["backpack1"] = {
|
||
|
["name"] = "backpack1",
|
||
|
["label"] = "Backpack 1",
|
||
|
["weight"] = 10000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "backpack_girl.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Backpack",
|
||
|
['created'] = nil
|
||
|
},
|
||
|
["backpack2"] = {
|
||
|
["name"] = "backpack2",
|
||
|
["label"] = "Backpack 2",
|
||
|
["weight"] = 10000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "backpack_boy.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Backpack",
|
||
|
['created'] = nil
|
||
|
},
|
||
|
["briefcase"] = {
|
||
|
["name"] = "briefcase",
|
||
|
["label"] = "Briefcase",
|
||
|
["weight"] = 10000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "briefcase.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Briefcase",
|
||
|
['created'] = nil
|
||
|
},
|
||
|
["paramedicbag"] = {
|
||
|
["name"] = "paramedicbag",
|
||
|
["label"] = "Paramedic bag",
|
||
|
["weight"] = 10000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "paramedic_bag.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Paramedic bag",
|
||
|
['created'] = nil
|
||
|
},
|
||
|
|
||
|
--camera
|
||
|
["camera"] = {["name"] = "camera", ["label"] = "Camera", ["weight"] = 1000, ["type"] = "item", ["image"] = "camera.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil},
|
||
|
["photo"] = {["name"] = "photo", ["label"] = "Photo", ["weight"] = 20, ["type"] = "item", ["image"] = "photo.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil},
|
||
|
|
||
|
--Cocktails
|
||
|
["amarettosour"] = {["name"] = "amarettosour", ["label"] = "Amaretto Sour", ["weight"] = 200, ["type"] = "item", ["image"] = "amarettosour.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Amaretto Sour", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["bellini"] = {["name"] = "bellini", ["label"] = "Bellini", ["weight"] = 200, ["type"] = "item", ["image"] = "bellini.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Bellini", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cosmopolitan"] = {["name"] = "cosmopolitan", ["label"] = "Cosmopolitan", ["weight"] = 200, ["type"] = "item", ["image"] = "cosmopolitan.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Cosmopolitan", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["longisland"] = {["name"] = "longisland", ["label"] = "Long Island Ice tea", ["weight"] = 200, ["type"] = "item", ["image"] = "longisland.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Long Island Ice Tea", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["margarita"] = {["name"] = "margarita", ["label"] = "Margarita", ["weight"] = 200, ["type"] = "item", ["image"] = "margarita.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Margarita", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pinacolada"] = {["name"] = "pinacolada", ["label"] = "Pina Colada", ["weight"] = 200, ["type"] = "item", ["image"] = "pinacolada.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Pine Colada", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sangria"] = {["name"] = "sangria", ["label"] = "Sangria", ["weight"] = 200, ["type"] = "item", ["image"] = "sangria.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sangria", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["screwdriver"] = {["name"] = "screwdriver", ["label"] = "Screwdriver", ["weight"] = 200, ["type"] = "item", ["image"] = "screwdriver.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Screwdriver", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["strawdaquiri"] = {["name"] = "strawdaquiri", ["label"] = "Strawberry Daquiri", ["weight"] = 200, ["type"] = "item", ["image"] = "strawdaquiri.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Strawberry Daquiri", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["strawmargarita"] = {["name"] = "strawmargarita", ["label"] = "Strawberry Margarita", ["weight"] = 200, ["type"] = "item", ["image"] = "strawmargarita.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Starberry Margarita", ['thirst'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--BEERS
|
||
|
--SODA
|
||
|
["crisps"] = {["name"] = "crisps", ["label"] = "Crisps", ["weight"] = 100, ["type"] = "item", ["image"] = "chips.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Food
|
||
|
["nplate"] = {["name"] = "nplate", ["label"] = "Nachos Plate", ["weight"] = 200, ["type"] = "item", ["image"] = "nplate.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A plate of nachos and cheese", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["vusliders"] = {["name"] = "vusliders", ["label"] = "Sliders", ["weight"] = 200, ["type"] = "item", ["image"] = "sliders.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sliders", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["vutacos"] = {["name"] = "vutacos", ["label"] = "Tacos", ["weight"] = 200, ["type"] = "item", ["image"] = "tacos.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Tacos", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["tots"] = {["name"] = "tots", ["label"] = "Tits or Tots", ["weight"] = 200, ["type"] = "item", ["image"] = "tots.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sexy Tots", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
--Food Ingredients
|
||
|
["meat"] = {["name"] = "meat", ["label"] = "Meat", ["weight"] = 200, ["type"] = "item", ["image"] = "meat.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A slab of Meat", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["nachos"] = {["name"] = "nachos", ["label"] = "Nachos", ["weight"] = 200, ["type"] = "item", ["image"] = "nachos.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A bag of Nachos", ['hunger'] = math.random(40, 50), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["lettuce"] = {["name"] = "lettuce", ["label"] = "Lettuce", ["weight"] = 100, ["type"] = "item", ["image"] = "lettuce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Some big taco brother", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["cheddar"] = {["name"] = "cheddar", ["label"] = "Cheddar Slice", ["weight"] = 500, ["type"] = "item", ["image"] = "cheddar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Food", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["potato"] = {["name"] = "potato", ["label"] = "Potatoes", ["weight"] = 500, ["type"] = "item", ["image"] = "potatoes.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Food", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
|
||
|
--SODA
|
||
|
--WINES
|
||
|
["amarone"] = {["name"] = "amarone", ["label"] = "Amarone", ["weight"] = 100, ["type"] = "item", ["image"] = "amarone.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["barbera"] = {["name"] = "barbera", ["label"] = "Barbera D'Asti", ["weight"] = 100, ["type"] = "item", ["image"] = "barbera.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["dolceto"] = {["name"] = "dolceto", ["label"] = "Dolcetto D'Alba", ["weight"] = 100, ["type"] = "item", ["image"] = "dolceto.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["housered"] = {["name"] = "housered", ["label"] = "House Red Wine", ["weight"] = 100, ["type"] = "item", ["image"] = "housered.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["housewhite"] = {["name"] = "housewhite", ["label"] = "House White Wine", ["weight"] = 100, ["type"] = "item", ["image"] = "housewhite.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["rosso"] = {["name"] = "rosso", ["label"] = "Rosso Del Montalcino", ["weight"] = 100, ["type"] = "item", ["image"] = "rosso.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['thirst'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--DESSERTS
|
||
|
["tiramisu"] = {["name"] = "tiramisu", ["label"] = "Tiramisu", ["weight"] = 100, ["type"] = "item", ["image"] = "tiramisu.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["gelato"] = {["name"] = "gelato", ["label"] = "Choc and Vanilla Gelato", ["weight"] = 100, ["type"] = "item", ["image"] = "gelato.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["medfruits"] = {["name"] = "medfruits", ["label"] = "Fresh Fruit Medly", ["weight"] = 100, ["type"] = "item", ["image"] = "medfruits.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--PASTA
|
||
|
["bolognese"] = {["name"] = "bolognese", ["label"] = "Bolognese", ["weight"] = 100, ["type"] = "item", ["image"] = "bolognese.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["calamari"] = {["name"] = "calamari", ["label"] = "Calamari Marinara", ["weight"] = 100, ["type"] = "item", ["image"] = "calamari.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["meatball"] = {["name"] = "meatball", ["label"] = "Homemade Meatballs", ["weight"] = 100, ["type"] = "item", ["image"] = "meatball.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["alla"] = {["name"] = "alla", ["label"] = "Alla Vodka", ["weight"] = 100, ["type"] = "item", ["image"] = "alla.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pescatore"] = {["name"] = "pescatore", ["label"] = "Pescatore", ["weight"] = 100, ["type"] = "item", ["image"] = "pescatore.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--PIZZA SLICES
|
||
|
["capricciosa"] = {["name"] = "capricciosa", ["label"] = "Capriccosa", ["weight"] = 100, ["type"] = "item", ["image"] = "capricciosa.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["diavola"] = {["name"] = "diavola", ["label"] = "Diavola", ["weight"] = 100, ["type"] = "item", ["image"] = "diavola.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["marinara"] = {["name"] = "marinara", ["label"] = "Marinara", ["weight"] = 100, ["type"] = "item", ["image"] = "marinara.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["margherita"] = {["name"] = "margherita", ["label"] = "Margherita", ["weight"] = 100, ["type"] = "item", ["image"] = "margherita.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["prosciuttio"] = {["name"] = "prosciuttio", ["label"] = "Prosciuttio E Funghi", ["weight"] = 100, ["type"] = "item", ["image"] = "proscuttio.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["vegetariana"] = {["name"] = "vegetariana", ["label"] = "Vegetariana", ["weight"] = 100, ["type"] = "item", ["image"] = "vegetariana.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['hunger'] = math.random(20, 30), ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--PIZZA BOXES
|
||
|
["capricciosabox"] = {["name"] = "capricciosabox", ["label"] = "Boxed Capriccosa", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["diavolabox"] = {["name"] = "diavolabox", ["label"] = "Boxed Diavola", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["marinarabox"] = {["name"] = "marinarabox", ["label"] = "Boxed Marinara", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["margheritabox"] = {["name"] = "margheritabox", ["label"] = "Boxed Margherita", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["prosciuttiobox"] = {["name"] = "prosciuttiobox", ["label"] = "Boxed Prosciuttio E Funghi", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["vegetarianabox"] = {["name"] = "vegetarianabox", ["label"] = "Boxed Vegetariana", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzabox.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
--INGREDIENTS
|
||
|
["pizzabase"] = {["name"] = "pizzabase", ["label"] = "Pizza Base", ["weight"] = 100, ["type"] = "item", ["image"] = "base2.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pizzadough"] = {["name"] = "pizzadough", ["label"] = "Pizza Dough", ["weight"] = 100, ["type"] = "item", ["image"] = "pizzadough.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["mozz"] = {["name"] = "mozz", ["label"] = "Mozzeralla", ["weight"] = 100, ["type"] = "item", ["image"] = "mozz.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["sauce"] = {["name"] = "sauce", ["label"] = "Tomato Sauce", ["weight"] = 100, ["type"] = "item", ["image"] = "sauce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["salami"] = {["name"] = "salami", ["label"] = "Salami", ["weight"] = 100, ["type"] = "item", ["image"] = "salami.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["ham"] = {["name"] = "ham", ["label"] = "Ham", ["weight"] = 100, ["type"] = "item", ["image"] = "ham.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["squid"] = {["name"] = "squid", ["label"] = "Calamari", ["weight"] = 100, ["type"] = "item", ["image"] = "squid.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pizzmushrooms"] = {["name"] = "pizzmushrooms", ["label"] = "Mushrooms", ["weight"] = 100, ["type"] = "item", ["image"] = "mushrooms.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["olives"] = {["name"] = "olives", ["label"] = "Olives", ["weight"] = 100, ["type"] = "item", ["image"] = "olives.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["basil"] = {["name"] = "basil", ["label"] = "Basil", ["weight"] = 100, ["type"] = "item", ["image"] = "basil.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["meat"] = {["name"] = "meat", ["label"] = "Meat", ["weight"] = 200, ["type"] = "item", ["image"] = "meat.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A slab of Meat", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
["pasta"] = {["name"] = "pasta", ["label"] = "Bag of Pasta", ["weight"] = 200, ["type"] = "item", ["image"] = "pasta.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A bag of Pasta", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
["lettuce"] = {["name"] = "lettuce", ["label"] = "Lettuce", ["weight"] = 100, ["type"] = "item", ["image"] = "lettuce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Some big taco brother", ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
|
||
|
['simcard'] = {['name'] = 'simcard', ['label'] = 'Sim Card', ['weight'] = 1, ['type'] = 'item', ['image'] = 'simcard.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its a new sim.. That means a new number?'},
|
||
|
|
||
|
['polaroid_camera'] = {
|
||
|
['name'] = 'polaroid_camera',
|
||
|
['label'] = 'Polaroid camera',
|
||
|
['weight'] = 5000,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'polaroid.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'Did we just go back in time?'
|
||
|
},
|
||
|
|
||
|
['polaroid'] = {
|
||
|
['name'] = 'polaroid',
|
||
|
['label'] = 'Polaroid image',
|
||
|
['weight'] = 10,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'photo.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'Cool image bro'
|
||
|
},
|
||
|
|
||
|
['polaroid_paper'] = {
|
||
|
['name'] = 'polaroid_paper',
|
||
|
['label'] = 'Polaroid paper',
|
||
|
['weight'] = 10,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'photo.png',
|
||
|
['unique'] = false,
|
||
|
['useable'] = false,
|
||
|
['shouldClose'] = false,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'Some paper'
|
||
|
},
|
||
|
['cheap_lighter'] = {['name'] = 'cheap_lighter', ['label'] = 'cheap lighter', ['weight'] = 200, ['type'] = 'item', ['image'] = 'cheap_lighter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil},
|
||
|
['gelatti'] = {['name'] = 'gelatti', ['label'] = 'gelatti', ['weight'] = 200, ['type'] = 'item', ['image'] = 'gelatti.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['gary_payton'] = {['name'] = 'gary_payton', ['label'] = 'gary payton', ['weight'] = 200, ['type'] = 'item', ['image'] = 'gary_payton.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cereal_milk'] = {['name'] = 'cereal_milk', ['label'] = 'cereal milk', ['weight'] = 200, ['type'] = 'item', ['image'] = 'cereal_milk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cheetah_piss'] = {['name'] = 'cheetah_piss', ['label'] = 'cheetah piss', ['weight'] = 200, ['type'] = 'item', ['image'] = 'cheetah_piss.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['snow_man'] = {['name'] = 'snow_man', ['label'] = 'snow_man', ['weight'] = 200, ['type'] = 'item', ['image'] = 'snow_man.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['georgia_pie'] = {['name'] = 'georgia_pie', ['label'] = 'georgia_pie', ['weight'] = 200, ['type'] = 'item', ['image'] = 'georgia_pie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['jefe'] = {['name'] = 'jefe', ['label'] = 'jefe', ['weight'] = 200, ['type'] = 'item', ['image'] = 'jefe.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['cake_mix'] = {['name'] = 'cake_mix', ['label'] = 'cake_mix', ['weight'] = 200, ['type'] = 'item', ['image'] = 'cake_mix.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['backwoods_honey'] = {['name'] = 'backwoods_honey', ['label'] = 'backwoods_honey', ['weight'] = 200, ['type'] = 'item', ['image'] = 'backwoods_honey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['backwoods_grape'] = {['name'] = 'backwoods_grape', ['label'] = 'backwoods grape', ['weight'] = 200, ['type'] = 'item', ['image'] = 'backwoods_grape.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['blueberry_cruffin'] = {['name'] = 'backwoods_grape', ['label'] = 'blueberry cruffin', ['weight'] = 200, ['type'] = 'item', ['image'] = 'blueberry_cruffin.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['grabba_leaf'] = {['name'] = 'grabba_leaf', ['label'] = 'grabba leaf', ['weight'] = 200, ['type'] = 'item', ['image'] = 'grabba_leaf.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['whitecherry_gelato'] = {['name'] = 'whitecherry_gelato', ['label'] = 'whitecherry gelato', ['weight'] = 200, ['type'] = 'item', ['image'] = 'whitecherry_gelato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['backwoods_russian_cream'] = {['name'] = 'backwoods_russian_cream', ['label'] = 'backwoods russian cream', ['weight'] = 200, ['type'] = 'item', ['image'] = 'backwoods_russian_cream.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['pooch_bag'] = {['name'] = 'pooch_bag', ['label'] = 'pooch bag', ['weight'] = 200, ['type'] = 'item', ['image'] = 'pooch_bag.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
['seed_weed'] = {['name'] = 'seed_weed', ['label'] = 'seedweed', ['weight'] = 200, ['type'] = 'item', ['image'] = 'seed_weed.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nice to eat', ['created'] = nil, ["decay"] = 0.0, ["delete"] = false},
|
||
|
|
||
|
-- ['cash'] = {['name'] = 'cash', ['label'] = 'Cash', ['weight'] = 0, ['type'] = 'item', ['image'] = 'cash.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'cash'},
|
||
|
["spray"] = {["name"] = "spray", ["label"] = "Bomboletta Spray", ["weight"] = 300, ["type"] = "item", ["image"] = "spray.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Una bomboletta spray di vernice"},
|
||
|
["spray_remover"] = {["name"] = "spray_remover", ["label"] = "Kit rimozione Spray", ["weight"] = 300, ["type"] = "item", ["image"] = "spray_remover.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Un kit di rimozione vernice spray"},
|
||
|
|
||
|
--Big Size
|
||
|
['burgershot_bagbig'] = {['name'] = 'burgershot_bagbig', ['label'] = 'Big Size Package', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bagbig.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "1x Big King, 1x Big Size Cola, 1x Big Size Patato", },
|
||
|
['burgershot_bigking'] = {['name'] = 'burgershot_bigking', ['label'] = 'Big King Burger', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bigking.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Big King", },
|
||
|
['burgershot_colab'] = {['name'] = 'burgershot_colab', ['label'] = 'Big Size Cola', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_colab.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Big Size Cola", },
|
||
|
['burgershot_patatob'] = {['name'] = 'burgershot_patatob', ['label'] = 'Big Size Patato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_patatob.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Big Size Patato", },
|
||
|
--Small Size
|
||
|
['burgershot_bagsmall'] = {['name'] = 'burgershot_bagsmall', ['label'] = 'Small Size Package', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bagsmall.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "1x Bleeder Burger, 1x Small Size Cola, 1x Small Size Patato", },
|
||
|
['burgershot_bleeder'] = {['name'] = 'burgershot_bleeder', ['label'] = 'Bleeder Burger', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bleeder.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Bleeder Burger", },
|
||
|
['burgershot_colas'] = {['name'] = 'burgershot_colas', ['label'] = 'Small Size Cola', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_colas.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Small Size Cola", },
|
||
|
['burgershot_patatos'] = {['name'] = 'burgershot_patatos', ['label'] = 'Small Size Patato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_patatos.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Small Size Patato", },
|
||
|
--Goat Menu (Big Kola)
|
||
|
['burgershot_baggoat'] = {['name'] = 'burgershot_baggoat', ['label'] = 'Goat Menu Package', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_baggoat.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "1x Goat Wrap, 1x Big Size Cola, 1x Shot Nuggets, 1x Shot Rings", },
|
||
|
['burgershot_goatwrap'] = {['name'] = 'burgershot_goatwrap', ['label'] = 'Goat Wrap', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_goatwrap.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Goat Wrap", },
|
||
|
['burgershot_shotnuggets'] = {['name'] = 'burgershot_shotnuggets', ['label'] = 'Shot Nuggets', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_shotnuggets.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Shot Nuggets", },
|
||
|
['burgershot_shotrings'] = {['name'] = 'burgershot_shotrings', ['label'] = 'Shot Rings', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_shotrings.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Shot Rings", },
|
||
|
--Coffee Menu
|
||
|
['burgershot_bagcoffe'] = {['name'] = 'burgershot_bagcoffe', ['label'] = 'Coffee Package', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bagcoffe.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "1x Coffee, 1x Macaroon", },
|
||
|
['burgershot_coffee'] = {['name'] = 'burgershot_coffee', ['label'] = 'Burger Shot Coffee', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_coffee.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Burger Shot Coffee", },
|
||
|
['burgershot_macaroon'] = {['name'] = 'burgershot_macaroon', ['label'] = 'Macaroon', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_macaroon.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Macaroon", },
|
||
|
--Toys
|
||
|
['burgershot_toy1'] = {['name'] = 'burgershot_toy1', ['label'] = 'Burger Shot Toy', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_toy1.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Burger Shot Toy", },
|
||
|
['burgershot_toy2'] = {['name'] = 'burgershot_toy2', ['label'] = 'Burger Shot Toy', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_toy2.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Burger Shot Toy", },
|
||
|
['burgershot_toy3'] = {['name'] = 'burgershot_toy3', ['label'] = 'Burger Shot Toy', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_toy3.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Burger Shot Toy", },
|
||
|
['burgershot_toy4'] = {['name'] = 'burgershot_toy4', ['label'] = 'Burger Shot Toy', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_toy4.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Burger Shot Toy", },
|
||
|
['burgershot_toy5'] = {['name'] = 'burgershot_toy5', ['label'] = 'Burger Shot Toy', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_toy5.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Burger Shot Toy", },
|
||
|
['burgershot_toy6'] = {['name'] = 'burgershot_toy6', ['label'] = 'Burger Shot Toy', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_toy6.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Burger Shot Toy", },
|
||
|
--Fridge Items
|
||
|
['burgershot_tomato'] = {['name'] = 'burgershot_tomato', ['label'] = 'Tomato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_tomato.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Tomato", },
|
||
|
['burgershot_cheddar'] = {['name'] = 'burgershot_cheddar', ['label'] = 'Cheddar', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_cheddar.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Cheddar", },
|
||
|
['burgershot_curly'] = {['name'] = 'burgershot_curly', ['label'] = 'Curly', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_curly.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Curly", },
|
||
|
['burgershot_sauce'] = {['name'] = 'burgershot_sauce', ['label'] = 'Sauce', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_sauce.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Sauce", },
|
||
|
['burgershot_bread'] = {['name'] = 'burgershot_bread', ['label'] = 'Bread', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bread.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Bread", },
|
||
|
['burgershot_lavash'] = {['name'] = 'burgershot_lavash', ['label'] = 'Lavash', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_lavash.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Lavash", },
|
||
|
['burgershot_bigcardboard'] = {['name'] = 'burgershot_bigcardboard', ['label'] = 'Big Size Cardboard', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bigcardboard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Big Size Cardboard", },
|
||
|
['burgershot_smallcardboard'] = {['name'] = 'burgershot_smallcardboard', ['label'] = 'Small Size Cardboard', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_smallcardboard.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Small Size Cardboard", },
|
||
|
['burgershot_smallemptyglass'] = {['name'] = 'burgershot_smallemptyglass', ['label'] = 'Small Size Empty Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_smallemptyglass.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Small Size Empty Glass", },
|
||
|
['burgershot_bigemptyglass'] = {['name'] = 'burgershot_bigemptyglass', ['label'] = 'Big Size Empty Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bigemptyglass.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Big Size Empty Glass", },
|
||
|
['burgershot_coffeeemptyglass'] = {['name'] = 'burgershot_coffeeemptyglass', ['label'] = 'Coffee Empty Glass', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_coffeeemptyglass.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Coffee Empty Glass", },
|
||
|
['burgershot_frozenmeat'] = {['name'] = 'burgershot_frozenmeat', ['label'] = 'Frozen Meat', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_frozenmeat.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Frozen Meat", },
|
||
|
['burgershot_frozenrings'] = {['name'] = 'burgershot_frozenrings', ['label'] = 'Frozen Rings', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_frozenrings.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Frozen Rings", },
|
||
|
['burgershot_frozennuggets'] = {['name'] = 'burgershot_frozennuggets', ['label'] = 'Frozen Nuggets', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_frozennuggets.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Frozen Nuggets", },
|
||
|
['burgershot_smallfrozenpotato'] = {['name'] = 'burgershot_smallfrozenpotato', ['label'] = 'Small Size Frozen Potato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_smallfrozenpotato.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Small Size Frozen Potato", },
|
||
|
['burgershot_bigfrozenpotato'] = {['name'] = 'burgershot_bigfrozenpotato', ['label'] = 'Big Size Frozen Potato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_bigfrozenpotato.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Big Size Frozen Potato", },
|
||
|
['burgershot_meat'] = {['name'] = 'burgershot_meat', ['label'] = 'Meat', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_meat.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Meat", },
|
||
|
--Ice Cream
|
||
|
['burgershot_thesmurfsicecream'] = {['name'] = 'burgershot_thesmurfsicecream', ['label'] = 'The Smurfs Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_thesmurfsicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "The Smurfs Ice Cream", },
|
||
|
['burgershot_smurfetteicecream'] = {['name'] = 'burgershot_smurfetteicecream', ['label'] = 'Smurfette Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_smurfetteicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Smurfette Ice Cream", },
|
||
|
['burgershot_matchaicecream'] = {['name'] = 'burgershot_matchaicecream', ['label'] = 'Matcha Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_matchaicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Matcha Ice Cream", },
|
||
|
['burgershot_ubeicecream'] = {['name'] = 'burgershot_ubeicecream', ['label'] = 'Ube Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_ubeicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Ube Ice Cream", },
|
||
|
['burgershot_unicornicecream'] = {['name'] = 'burgershot_unicornicecream', ['label'] = 'Unicorn Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_unicornicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Unicorn Ice Cream", },
|
||
|
['burgershot_vanillaicecream'] = {['name'] = 'burgershot_vanillaicecream', ['label'] = 'Vanilla Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_vanillaicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Vanilla Ice Cream", },
|
||
|
['burgershot_chocolateicecream'] = {['name'] = 'burgershot_chocolateicecream', ['label'] = 'Chocolate Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_chocolateicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Chocolate Ice Cream", },
|
||
|
['burgershot_strawberryicecream'] = {['name'] = 'burgershot_strawberryicecream', ['label'] = 'Strawberry Ice Cream', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_strawberryicecream.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Strawberry Ice Cream", },
|
||
|
['burgershot_icecreamcone'] = {['name'] = 'burgershot_icecreamcone', ['label'] = 'Empty Cone', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershot_icecreamcone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Cone", },
|
||
|
|
||
|
-- Whitewidow items
|
||
|
["weed_skunk_cbd_crop"] = {["name"] = "weed_skunk_cbd_crop", ["label"] = "CBD Skunk Crop", ["weight"] = 1200, ["type"] = "item", ["image"] = "weed_skunk_crop.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A crop of CBD Skunk!"},
|
||
|
["weed_og-kush_cbd_crop"] = {["name"] = "weed_og-kush_cbd_crop", ["label"] = "CBD OG Kush Crop", ["weight"] = 1200, ["type"] = "item", ["image"] = "weed_og-kush_crop.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A crop of CBD OG Kush"},
|
||
|
["weed_white-widow_cbd_crop"] = {["name"] = "weed_white-widow_cbd_crop", ["label"] = "CBD White Widow Crop", ["weight"] = 1200, ["type"] = "item", ["image"] = "weed_white-widow_crop.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A crop of CBD White Widow"},
|
||
|
["weed_ak47_cbd_crop"] = {["name"] = "weed_ak47_cbd_crop", ["label"] = "CBD AK 47 Crop", ["weight"] = 1200, ["type"] = "item", ["image"] = "weed_ak47_crop.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A crop of CBD AK47!"},
|
||
|
["weed_skunk_cbd"] = {["name"] = "weed_skunk_cbd", ["label"] = "CBD Skunk 2g", ["weight"] = 5, ["type"] = "item", ["image"] = "weed_skunk_cbd.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A 2g bag of CBD Skunk!"},
|
||
|
["weed_og-kush_cbd"] = {["name"] = "weed_og-kush_cbd", ["label"] = "CBD OGKush 2g", ["weight"] = 5, ["type"] = "item", ["image"] = "weed_og-kush_cbd.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A 2g bag of CBD OG Kush!"},
|
||
|
["weed_white-widow_cbd"] = {["name"] = "weed_white-widow_cbd", ["label"] = "CBD White Widow 2g", ["weight"] = 5, ["type"] = "item", ["image"] = "weed_white-widow_cbd.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A 2g bag of CBD White Widow!"},
|
||
|
["weed_ak47_cbd"] = {["name"] = "weed_ak47_cbd", ["label"] = "CBD AK47 2g", ["weight"] = 5, ["type"] = "item", ["image"] = "weed_ak47_cbd.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A 2g bag of CBD 2g AK47!"},
|
||
|
["weed_skunk_cbd_joint"] = {["name"] = "weed_skunk_cbd_joint", ["label"] = "CBD Skunk Joint", ["weight"] = 1000, ["type"] = "item", ["image"] = "weed_skunk_cbd_joint.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Light up that skunk son!"},
|
||
|
["weed_og-kush_cbd_joint"] = {["name"] = "weed_og-kush_cbd_joint", ["label"] = "CBD OG Kush Joint", ["weight"] = 1000, ["type"] = "item", ["image"] = "weed_og-kush_cbd_joint.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Light up that og kush son!"},
|
||
|
["weed_white-widow_cbd_joint"] = {["name"] = "weed_white-widow_cbd_joint", ["label"] = "CBD White Widow Joint", ["weight"] = 1000, ["type"] = "item", ["image"] = "weed_white-widow_cbd_joint.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Light up that white widow son!"},
|
||
|
["weed_ak47_cbd_joint"] = {["name"] = "weed_ak47_cbd_joint", ["label"] = "CBD AK 47 Joint", ["weight"] = 1000, ["type"] = "item", ["image"] = "weed_ak47_cbd_joint.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Light up that ak47 son!"},
|
||
|
["lighter"] = {["name"] = "lighter", ["label"] = "Lighter", ["weight"] = 5, ["type"] = "item", ["image"] = "lighter.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "On new years eve a nice fire to stand next to"},
|
||
|
["bong"] = {["name"] = "bong", ["label"] = "Bong", ["weight"] = 500, ["type"] = "item", ["image"] = "bong.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "In Australia this is called a \"Billy\""},
|
||
|
['empty_weed_bag'] = {['name'] = 'empty_weed_bag', ['label'] = 'Empty Weed Bag', ['weight'] = 0, ['type'] = 'item', ['image'] = 'weed_baggy_empty.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small empty bag'},
|
||
|
["bakingsoda"] = {["name"] = "bakingsoda", ["label"] = "Baking Soda", ["weight"] = 1500, ["type"] = "item", ["image"] = "bakingsoda.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Household Baking Soda!"},
|
||
|
["eggs"] = {["name"] = "eggs", ["label"] = "Eggs", ["weight"] = 100, ["type"] = "item", ["image"] = "eggs.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Eggs", },
|
||
|
["sugar"] = {["name"] = "sugar", ["label"] = "Sugar", ["weight"] = 100, ["type"] = "item", ["image"] = "sugar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Sugar", },
|
||
|
["milk"] = {["name"] = "milk", ["label"] = "Milk", ["weight"] = 200, ["type"] = "item", ["image"] = "milk.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Carton of Milk", },
|
||
|
["strawberry"] = {["name"] = "strawberry", ["label"] = "Strawberries", ["weight"] = 100, ["type"] = "item", ["image"] = "strawberry.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Strawberries", },
|
||
|
["butter"] = {["name"] = "butter", ["label"] = "Butter", ["weight"] = 200, ["type"] = "item", ["image"] = "butter.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Butter", },
|
||
|
["gelatine"] = {["name"] = "gelatine", ["label"] = "Gelatine", ["weight"] = 100, ["type"] = "item", ["image"] = "gelatine.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Gelatine", },
|
||
|
["raspberry"] = {["name"] = "raspberry", ["label"] = "Raspberry", ["weight"] = 200, ["type"] = "item", ["image"] = "raspberry.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Raspberry", },
|
||
|
["gummymould"] = {["name"] = "gummymould", ["label"] = "Gummy Mould", ["weight"] = 400, ["type"] = "item", ["image"] = "gummymould.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Gummy Mould", },
|
||
|
["chocolatechips"] = {["name"] = "chocolatechips", ["label"] = "Chocolate Chips", ["weight"] = 400, ["type"] = "item", ["image"] = "chocolatechips.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chocolate Chips", },
|
||
|
["flour"] = {["name"] = "flour", ["label"] = "Flour", ["weight"] = 400, ["type"] = "item", ["image"] = "flour.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Flour", },
|
||
|
["strawberrygummybear"] = {["name"] = "strawberrygummybear", ["label"] = "Strawberry Gummy Bears", ["weight"] = 1000, ["type"] = "item", ["image"] = "wwgummybear.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Packet of..."},
|
||
|
["raspberrygummybear"] = {["name"] = "raspberrygummybear", ["label"] = "Raspberry Gummy Bears", ["weight"] = 1000, ["type"] = "item", ["image"] = "wwgummybear.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Packet of..."},
|
||
|
["ak47cookie"] = {["name"] = "ak47cookie", ["label"] = "AK47 Cookie", ["weight"] = 1000, ["type"] = "item", ["image"] = "wwcookie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Yum Cookie..."},
|
||
|
["skunkcookie"] = {["name"] = "skunkcookie", ["label"] = "Skunk Cookie", ["weight"] = 1000, ["type"] = "item", ["image"] = "wwcookie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Yum Cookie..."},
|
||
|
["wwcookie"] = {["name"] = "wwcookie", ["label"] = "WhiteWidow Cookie", ["weight"] = 1000, ["type"] = "item", ["image"] = "wwcookie.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Yum Cookie..."},
|
||
|
|
||
|
-- gun heist
|
||
|
["goldenphone"] = {["name"] = "goldenphone", ["label"] = "Golden Satellite Phone", ["weight"] = 200, ["type"] = "item", ["image"] = "goldenphone.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A communication device used to contact russian mafia."},
|
||
|
["redphone"] = {["name"] = "redphone", ["label"] = "Red Satellite Phone", ["weight"] = 200, ["type"] = "item", ["image"] = "redphone.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A communication device used to contact russian mafia."},
|
||
|
["greenphone"] = {["name"] = "greenphone", ["label"] = "Green Satellite Phone", ["weight"] = 200, ["type"] = "item", ["image"] = "greenphone.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A communication device used to contact russian mafia."},
|
||
|
|
||
|
|
||
|
["vape"] = {
|
||
|
["name"] = "vape",
|
||
|
["label"] = "Vape",
|
||
|
["weight"] = 2500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "vape.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "For the kids who think clouds are cool."
|
||
|
},
|
||
|
["vapejuice"] = {
|
||
|
["name"] = "vapejuice",
|
||
|
["label"] = "Vape Juice",
|
||
|
["weight"] = 100,
|
||
|
["type"] = "item",
|
||
|
["image"] = "vapejuice.png",
|
||
|
["unique"] = false,
|
||
|
['useable'] = false,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "100ml Vape Juice."
|
||
|
},
|
||
|
["emptyvape"] = {
|
||
|
["name"] = "emptyvape",
|
||
|
["label"] = "Juiceless Vape",
|
||
|
["weight"] = 100,
|
||
|
["type"] = "item",
|
||
|
["image"] = "vape.png",
|
||
|
["unique"] = false,
|
||
|
['useable'] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "A juiceless vape."
|
||
|
},
|
||
|
|
||
|
-- jim-mining stuff
|
||
|
["stone"] = {["name"] = "stone", ["label"] = "Stone", ["weight"] = 2000, ["type"] = "item", ["image"] = "stone.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Stone woo"},
|
||
|
|
||
|
["uncut_emerald"] = {["name"] = "uncut_emerald", ["label"] = "Uncut Emerald", ["weight"] = 100, ["type"] = "item", ["image"] = "uncut_emerald.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A rough Emerald"},
|
||
|
["uncut_ruby"] = {["name"] = "uncut_ruby", ["label"] = "Uncut Ruby", ["weight"] = 100, ["type"] = "item", ["image"] = "uncut_ruby.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A rough Ruby"},
|
||
|
["uncut_diamond"] = {["name"] = "uncut_diamond", ["label"] = "Uncut Diamond", ["weight"] = 100, ["type"] = "item", ["image"] = "uncut_diamond.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A rough Diamond"},
|
||
|
["uncut_sapphire"] = {["name"] = "uncut_sapphire", ["label"] = "Uncut Sapphire", ["weight"] = 100, ["type"] = "item", ["image"] = "uncut_sapphire.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A rough Sapphire"},
|
||
|
|
||
|
["emerald"] = {["name"] = "emerald", ["label"] = "Emerald", ["weight"] = 100, ["type"] = "item", ["image"] = "emerald.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Emerald that shimmers"},
|
||
|
["ruby"] = {["name"] = "ruby", ["label"] = "Ruby", ["weight"] = 100, ["type"] = "item", ["image"] = "ruby.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Ruby that shimmers"},
|
||
|
["diamond"] = {["name"] = "diamond", ["label"] = "Diamond", ["weight"] = 100, ["type"] = "item", ["image"] = "diamond.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Diamond that shimmers"},
|
||
|
["sapphire"] = {["name"] = "sapphire", ["label"] = "Sapphire", ["weight"] = 100, ["type"] = "item", ["image"] = "sapphire.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A Sapphire that shimmers"},
|
||
|
|
||
|
["gold_ring"] = {["name"] = "gold_ring", ["label"] = "Gold Ring", ["weight"] = 200, ["type"] = "item", ["image"] = "gold_ring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["diamond_ring"] = {["name"] = "diamond_ring", ["label"] = "Diamond Ring", ["weight"] = 200, ["type"] = "item", ["image"] = "diamond_ring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ruby_ring"] = {["name"] = "ruby_ring", ["label"] = "Ruby Ring", ["weight"] = 200, ["type"] = "item", ["image"] = "ruby_ring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sapphire_ring"] = {["name"] = "sapphire_ring", ["label"] = "Sapphire Ring", ["weight"] = 200, ["type"] = "item", ["image"] = "sapphire_ring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emerald_ring"] = {["name"] = "emerald_ring", ["label"] = "Emerald Ring", ["weight"] = 200, ["type"] = "item", ["image"] = "emerald_ring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["silver_ring"] = {["name"] = "silver_ring", ["label"] = "Silver Ring", ["weight"] = 200, ["type"] = "item", ["image"] = "silver_ring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["diamond_ring_silver"] = {["name"] = "diamond_ring_silver", ["label"] = "Diamond Ring Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "diamond_ring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ruby_ring_silver"] = {["name"] = "ruby_ring_silver", ["label"] = "Ruby Ring Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "ruby_ring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sapphire_ring_silver"] = {["name"] = "sapphire_ring_silver", ["label"] = "Sapphire Ring Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "sapphire_ring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emerald_ring_silver"] = {["name"] = "emerald_ring_silver", ["label"] = "Emerald Ring Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "emerald_ring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["goldchain"] = {["name"] = "goldchain", ["label"] = "Golden Chain", ["weight"] = 200, ["type"] = "item", ["image"] = "goldchain.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["diamond_necklace"] = {["name"] = "diamond_necklace", ["label"] = "Diamond Necklace", ["weight"] = 200, ["type"] = "item", ["image"] = "diamond_necklace.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ruby_necklace"] = {["name"] = "ruby_necklace", ["label"] = "Ruby Necklace", ["weight"] = 200, ["type"] = "item", ["image"] = "ruby_necklace.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sapphire_necklace"] = {["name"] = "sapphire_necklace", ["label"] = "Sapphire Necklace", ["weight"] = 200, ["type"] = "item", ["image"] = "sapphire_necklace.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emerald_necklace"] = {["name"] = "emerald_necklace", ["label"] = "Emerald Necklace", ["weight"] = 200, ["type"] = "item", ["image"] = "emerald_necklace.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["silverchain"] = {["name"] = "silverchain", ["label"] = "Silver Chain", ["weight"] = 200, ["type"] = "item", ["image"] = "silverchain.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["diamond_necklace_silver"] = {["name"] = "diamond_necklace_silver", ["label"] = "Diamond Necklace Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "diamond_necklace_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ruby_necklace_silver"] = {["name"] = "ruby_necklace_silver", ["label"] = "Ruby Necklace Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "ruby_necklace_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sapphire_necklace_silver"] = {["name"] = "sapphire_necklace_silver", ["label"] = "Sapphire Necklace Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "sapphire_necklace_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emerald_necklace_silver"] = {["name"] = "emerald_necklace_silver", ["label"] = "Emerald Necklace Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "emerald_necklace_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["goldearring"] = {["name"] = "goldearring", ["label"] = "Golden Earrings", ["weight"] = 200, ["type"] = "item", ["image"] = "gold_earring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["diamond_earring"] = {["name"] = "diamond_earring", ["label"] = "Diamond Earrings", ["weight"] = 200, ["type"] = "item", ["image"] = "diamond_earring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ruby_earring"] = {["name"] = "ruby_earring", ["label"] = "Ruby Earrings", ["weight"] = 200, ["type"] = "item", ["image"] = "ruby_earring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sapphire_earring"] = {["name"] = "sapphire_earring", ["label"] = "Sapphire Earrings", ["weight"] = 200, ["type"] = "item", ["image"] = "sapphire_earring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emerald_earring"] = {["name"] = "emerald_earring", ["label"] = "Emerald Earrings", ["weight"] = 200, ["type"] = "item", ["image"] = "emerald_earring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["silverearring"] = {["name"] = "silverearring", ["label"] = "Silver Earrings", ["weight"] = 200, ["type"] = "item", ["image"] = "silver_earring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["diamond_earring_silver"] = {["name"] = "diamond_earring_silver", ["label"] = "Diamond Earrings Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "diamond_earring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["ruby_earring_silver"] = {["name"] = "ruby_earring_silver", ["label"] = "Ruby Earrings Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "ruby_earring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["sapphire_earring_silver"] = {["name"] = "sapphire_earring_silver", ["label"] = "Sapphire Earrings Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "sapphire_earring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["emerald_earring_silver"] = {["name"] = "emerald_earring_silver", ["label"] = "Emerald Earrings Silver", ["weight"] = 200, ["type"] = "item", ["image"] = "emerald_earring_silver.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["carbon"] = {["name"] = "carbon", ["label"] = "Carbon", ["weight"] = 1000, ["type"] = "item", ["image"] = "carbon.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Carbon, a base ore."},
|
||
|
["ironore"] = {["name"] = "ironore", ["label"] = "Iron Ore", ["weight"] = 1000, ["type"] = "item", ["image"] = "ironore.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Iron, a base ore."},
|
||
|
["copperore"] = {["name"] = "copperore", ["label"] = "Copper Ore", ["weight"] = 1000, ["type"] = "item", ["image"] = "copperore.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Copper, a base ore."},
|
||
|
["goldore"] = {["name"] = "goldore", ["label"] = "Gold Ore", ["weight"] = 1000, ["type"] = "item", ["image"] = "goldore.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Gold Ore"},
|
||
|
["silverore"] = {["name"] = "silverore", ["label"] = "Silver Ore", ["weight"] = 1000, ["type"] = "item", ["image"] = "silverore.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Silver Ore"},
|
||
|
|
||
|
["goldingot"] = {["name"] = "goldingot", ["label"] = "Gold Ingot", ["weight"] = 1000, ["type"] = "item", ["image"] = "goldingot.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["silveringot"] = {["name"] = "silveringot", ["label"] = "Silver Ingot", ["weight"] = 1000, ["type"] = "item", ["image"] = "silveringot.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["pickaxe"] = {["name"] = "pickaxe", ["label"] = "Pickaxe", ["weight"] = 1000, ["type"] = "item", ["image"] = "pickaxe.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["miningdrill"] = {["name"] = "miningdrill", ["label"] = "Mining Drill", ["weight"] = 1000, ["type"] = "item", ["image"] = "miningdrill.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["mininglaser"] = {["name"] = "mininglaser", ["label"] = "Mining Laser", ["weight"] = 900, ["type"] = "item", ["image"] = "mininglaser.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
["drillbit"] = {["name"] = "drillbit", ["label"] = "Drill Bit", ["weight"] = 10, ["type"] = "item", ["image"] = "drillbit.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["goldpan"] = {["name"] = "goldpan", ["label"] = "Gold Panning Tray", ["weight"] = 10, ["type"] = "item", ["image"] = "goldpan.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["bottle"] = {["name"] = "bottle", ["label"] = "Empty Bottle", ["weight"] = 10, ["type"] = "item", ["image"] = "bottle.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A glass bottle"},
|
||
|
["can"] = {["name"] = "can", ["label"] = "Empty Can", ["weight"] = 10, ["type"] = "item", ["image"] = "can.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "An empty can, good for recycling"},
|
||
|
|
||
|
|
||
|
["police_scanner"] = {
|
||
|
["name"] = "police_scanner",
|
||
|
["label"] = "Police Scanner",
|
||
|
["weight"] = 0,
|
||
|
["type"] = "item",
|
||
|
["image"] = "police_scanner.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Scanner device for police officers"
|
||
|
},
|
||
|
|
||
|
-- ================ Keep-companion ================
|
||
|
["keepcompanionhusky"] = {
|
||
|
["name"] = "keepcompanionhusky",
|
||
|
["label"] = "Husky",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Husky.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Husky is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionpoodle"] = {
|
||
|
["name"] = "keepcompanionpoodle",
|
||
|
["label"] = "Poodle",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Poodle.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Poodle is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionrottweiler"] = {
|
||
|
["name"] = "keepcompanionrottweiler",
|
||
|
["label"] = "Rottweiler",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_Rottweiler.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Rottweiler is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionwesty"] = {
|
||
|
["name"] = "keepcompanionwesty",
|
||
|
["label"] = "Westy",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Westy.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Westy is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionmtlion"] = {
|
||
|
["name"] = "keepcompanionmtlion",
|
||
|
["label"] = "MtLion",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_MtLion.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "MtLion is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionmtlion2"] = {
|
||
|
["name"] = "keepcompanionmtlion2",
|
||
|
["label"] = "Panter",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_MtLion.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Panter is your royal companion!"
|
||
|
},
|
||
|
["keepcompanioncat"] = {
|
||
|
["name"] = "keepcompanioncat",
|
||
|
["label"] = "Cat",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Cat_01.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Cat is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionpug"] = {
|
||
|
["name"] = "keepcompanionpug",
|
||
|
["label"] = "Pug",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Pug.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Pug is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionretriever"] = {
|
||
|
["name"] = "keepcompanionretriever",
|
||
|
["label"] = "Retriever",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Retriever.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Retriever is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionshepherd"] = {
|
||
|
["name"] = "keepcompanionshepherd",
|
||
|
["label"] = "Shepherd",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_shepherd.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Shepherd is your royal companion!"
|
||
|
},
|
||
|
-- new pets
|
||
|
["keepcompanioncoyote"] = {
|
||
|
["name"] = "keepcompanioncoyote",
|
||
|
["label"] = "Coyote",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Coyote.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Coyote is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionrabbit"] = {
|
||
|
["name"] = "keepcompanionrabbit",
|
||
|
["label"] = "Rabbit",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Rabbit_01.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Rabbit is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionhen"] = {
|
||
|
["name"] = "keepcompanionhen",
|
||
|
["label"] = "Hen",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Hen.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Hen is your royal companion!"
|
||
|
},
|
||
|
["keepcompanionrat"] = {
|
||
|
["name"] = "keepcompanionrat",
|
||
|
["label"] = "Rat",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "A_C_Rat.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Your royal companion!"
|
||
|
},
|
||
|
---
|
||
|
["petfood"] = {
|
||
|
["name"] = "petfood",
|
||
|
["label"] = "pet food",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "petfood.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "food for your companion!"
|
||
|
},
|
||
|
["collarpet"] = {
|
||
|
["name"] = "collarpet",
|
||
|
["label"] = "Pet collar",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "collarpet.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = true,
|
||
|
["description"] = "Rename your pets!"
|
||
|
},
|
||
|
["firstaidforpet"] = {
|
||
|
["name"] = "firstaidforpet",
|
||
|
["label"] = "First aid for pet",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "firstaidforpet.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Revive your pet!"
|
||
|
},
|
||
|
["petnametag"] = {
|
||
|
["name"] = "petnametag",
|
||
|
["label"] = "Name tag",
|
||
|
["weight"] = 500,
|
||
|
["type"] = "item",
|
||
|
["image"] = "petnametag.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Rename your pet"
|
||
|
},
|
||
|
["petwaterbottleportable"] = {
|
||
|
["name"] = "petwaterbottleportable",
|
||
|
["label"] = "Portable water bottle",
|
||
|
["weight"] = 1000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "petwaterbottleportable.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Flask to store water for your pets"
|
||
|
},
|
||
|
["petgroomingkit"] = {
|
||
|
["name"] = "petgroomingkit",
|
||
|
["label"] = "Pet Grooming Kit",
|
||
|
["weight"] = 1000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "petgroomingkit.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Pet Grooming Kit"
|
||
|
},
|
||
|
["stethascope"] = {
|
||
|
["name"] = "stethascope",
|
||
|
["label"] = "Stetha Scope",
|
||
|
["weight"] = 100,
|
||
|
["type"] = "item",
|
||
|
["image"] = "stethascope.png",
|
||
|
["unique"] = false,
|
||
|
['useable'] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Doctor Equipment."
|
||
|
},
|
||
|
["specialwatch"] = {
|
||
|
["name"] = "specialwatch",
|
||
|
["label"] = "Special Watch",
|
||
|
["weight"] = 100,
|
||
|
["type"] = "item",
|
||
|
["image"] = "specialwatch.png",
|
||
|
["unique"] = false,
|
||
|
['useable'] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Nice Watch. Must Be Rare"
|
||
|
},
|
||
|
["blueusb"] = {
|
||
|
["name"] = "blueusb",
|
||
|
["label"] = "Blue usb Device",
|
||
|
["weight"] = 100,
|
||
|
["type"] = "item",
|
||
|
["image"] = "blueusb.png",
|
||
|
["unique"] = false,
|
||
|
['useable'] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Good To Store Data on"
|
||
|
},
|
||
|
|
||
|
-- Taco Shop Food
|
||
|
["beef-taco"] = {["name"] = "beef-taco", ["label"] = "Beef Taco", ["weight"] = 250, ["type"] = "item", ["image"] = "beef-taco.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Beef Taco!"},
|
||
|
["chicken-taco"] = {["name"] = "chicken-taco", ["label"] = "Chicken Taco", ["weight"] = 250, ["type"] = "item", ["image"] = "chicken-taco.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chicken Taco!"},
|
||
|
["quesadilla"] = {["name"] = "quesadilla", ["label"] = "Quesadilla", ["weight"] = 250, ["type"] = "item", ["image"] = "quesadilla.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Quesadilla!"},
|
||
|
["chicken-burrito"] = {["name"] = "chicken-burrito", ["label"] = "Chicken Burrito", ["weight"] = 250, ["type"] = "item", ["image"] = "chicken-burrito.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Chicken Burrito!"},
|
||
|
["beef-burrito"] = {["name"] = "beef-burrito", ["label"] = "Beef Burrito", ["weight"] = 250, ["type"] = "item", ["image"] = "beef-burrito.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Beef Burrito!"},
|
||
|
["nachos"] = {["name"] = "nachos", ["label"] = "Nachos", ["weight"] = 250, ["type"] = "item", ["image"] = "nachos.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Nachos!"},
|
||
|
|
||
|
-- Taco Drinks
|
||
|
["coke-soda"] = {["name"] = "coke-soda", ["label"] = "Coke Soda", ["weight"] = 180, ["type"] = "item", ["image"] = "coke-soda.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Coke Soda!"},
|
||
|
["fanta"] = {["name"] = "fanta", ["label"] = "Fanta", ["weight"] = 180, ["type"] = "item", ["image"] = "fanta.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Fanta!"},
|
||
|
|
||
|
--Ingredients
|
||
|
["tortillas"] = {["name"] = "tortillas", ["label"] = "Tortillas", ["weight"] = 150, ["type"] = "item", ["image"] = "tortillas.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["ground-beef"] = {["name"] = "ground-beef", ["label"] = "Ground Beef", ["weight"] = 210, ["type"] = "item", ["image"] = "ground-beef.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["raw-ground-beef"] = {["name"] = "raw-ground-beef", ["label"] = "Raw Ground Beef", ["weight"] = 210, ["type"] = "item", ["image"] = "raw-ground-beef.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["cheddar-cheese"] = {["name"] = "cheddar-cheese", ["label"] = "Cheddar Cheese", ["weight"] = 125, ["type"] = "item", ["image"] = "cheddar-cheese.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["butter"] = {["name"] = "butter", ["label"] = "Butter", ["weight"] = 125, ["type"] = "item", ["image"] = "butter.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Smooth like butter, like a criminal undercover~"},
|
||
|
["chicken"] = {["name"] = "chicken", ["label"] = "Chicken", ["weight"] = 180, ["type"] = "item", ["image"] = "chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["raw-chicken"] = {["name"] = "raw-chicken", ["label"] = "Raw Chicken", ["weight"] = 180, ["type"] = "item", ["image"] = "raw-chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["lettuce"] = {["name"] = "lettuce", ["label"] = "Lettuce", ["weight"] = 150, ["type"] = "item", ["image"] = "lettuce.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["tortilla-chips"] = {["name"] = "tortilla-chips", ["label"] = "Tortilla Chips", ["weight"] = 150, ["type"] = "item", ["image"] = "tortilla-chips.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["carbonated-water"] = {["name"] = "carbonated-water", ["label"] = "Carbonated Water", ["weight"] = 125, ["type"] = "item", ["image"] = "carbonated-water.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["sugar-cubes"] = {["name"] = "sugar-cubes", ["label"] = "Sugar Cubes", ["weight"] = 100, ["type"] = "item", ["image"] = "sugar-cubes.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
["taco-tomato"] = {["name"] = "taco-tomato", ["label"] = "Tomatoes", ["weight"] = 100, ["type"] = "item", ["image"] = "taco-tomato.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Ingredient"},
|
||
|
|
||
|
|
||
|
["oilbarell"] = {
|
||
|
["name"] = "oilbarell",
|
||
|
["label"] = "Oil barell",
|
||
|
["weight"] = 15000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "oilBarrel.png",
|
||
|
["unique"] = true,
|
||
|
["useable"] = false,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Oil Barrel"
|
||
|
},
|
||
|
["oilwell"] = {
|
||
|
["name"] = "oilwell",
|
||
|
["label"] = "Oilwell",
|
||
|
["weight"] = 50000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "oilwell.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Oilwell"
|
||
|
},
|
||
|
["reliefvalvestring"] = {
|
||
|
["name"] = "reliefvalvestring",
|
||
|
["label"] = "Relief Valve String",
|
||
|
["weight"] = 4000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "relief_valve_string.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Relief Valve String"
|
||
|
},
|
||
|
["oilfilter"] = {
|
||
|
["name"] = "oilfilter",
|
||
|
["label"] = "Oil Filter",
|
||
|
["weight"] = 5000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "oil_filter.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Oil Filter"
|
||
|
},
|
||
|
["skewgear"] = {
|
||
|
["name"] = "skewgear",
|
||
|
["label"] = "Skew Gear",
|
||
|
["weight"] = 6000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "skew_gear.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Skew Gear"
|
||
|
},
|
||
|
["timingchain"] = {
|
||
|
["name"] = "timingchain",
|
||
|
["label"] = "Timing Chain",
|
||
|
["weight"] = 7000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "timing_chain.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Timing Chain"
|
||
|
},
|
||
|
["driveshaft"] = {
|
||
|
["name"] = "driveshaft",
|
||
|
["label"] = "Drive Shaft",
|
||
|
["weight"] = 5000,
|
||
|
["type"] = "item",
|
||
|
["image"] = "drive_shaft.png",
|
||
|
["unique"] = false,
|
||
|
["useable"] = true,
|
||
|
["shouldClose"] = true,
|
||
|
["combinable"] = nil,
|
||
|
["description"] = "Drive Shaft"
|
||
|
},
|
||
|
|
||
|
["notepad"] = {["name"] = "notepad", ["label"] = "Notepad", ["weight"] = 100, ["type"] = "item", ["image"] = "notepad.png", ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ""},
|
||
|
|
||
|
-- AN Mechanic Job
|
||
|
['car_wheel'] = {
|
||
|
['name'] = 'car_wheel',
|
||
|
['label'] = 'Wheel',
|
||
|
['weight'] = 1000,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'car_wheel.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A multipurpose wheel'
|
||
|
},
|
||
|
['repairkit2'] = {
|
||
|
['name'] = 'repairkit2',
|
||
|
['label'] = 'Repair Kit',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'repairkit2.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A Special Repair Kit crafted by a Professional Mechanic.'
|
||
|
},
|
||
|
['advancedrepairkit2'] = {
|
||
|
['name'] = 'advancedrepairkit2',
|
||
|
['label'] = 'Advanced Repair Kit',
|
||
|
['weight'] = 800,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'advancedrepairkit2.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A Special & Advanced Repair Kit crafted by a Professional Mechanic.'
|
||
|
},
|
||
|
['car_door'] = {
|
||
|
['name'] = 'car_door',
|
||
|
['label'] = 'Car Door',
|
||
|
['weight'] = 1500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'car_door.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A car door.'
|
||
|
},
|
||
|
['car_trunk'] = {
|
||
|
['name'] = 'car_trunk',
|
||
|
['label'] = 'Car Trunk',
|
||
|
['weight'] = 1500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'car_trunk.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A car trunk.'
|
||
|
},
|
||
|
['car_hood'] = {
|
||
|
['name'] = 'car_hood',
|
||
|
['label'] = 'Car Hood',
|
||
|
['weight'] = 1500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'car_hood.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A car hood.'
|
||
|
},
|
||
|
['car_window'] = {
|
||
|
['name'] = 'car_window',
|
||
|
['label'] = 'Car Window',
|
||
|
['weight'] = 1500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'car_window.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A car window.'
|
||
|
},
|
||
|
['toolbox'] = {
|
||
|
['name'] = 'toolbox',
|
||
|
['label'] = 'Tool Box',
|
||
|
['weight'] = 500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'toolbox.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A special Mechanic Tool box.'
|
||
|
},
|
||
|
['carjack'] = {
|
||
|
['name'] = 'carjack',
|
||
|
['label'] = 'Car Jack',
|
||
|
['weight'] = 1500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'carjack.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'A car jack used to elevate the car from the ground for quick repairs.'
|
||
|
},
|
||
|
['car_engine'] = {
|
||
|
['name'] = 'car_engine',
|
||
|
['label'] = 'Engine',
|
||
|
['weight'] = 1500,
|
||
|
['type'] = 'item',
|
||
|
['image'] = 'car_engine.png',
|
||
|
['unique'] = true,
|
||
|
['useable'] = true,
|
||
|
['shouldClose'] = true,
|
||
|
['combinable'] = nil,
|
||
|
['description'] = 'An Engine that can be placed inside vehicles to make them run ig?'
|
||
|
},
|
||
|
["corn_seed"] = {["name"] = "corn_seed", ["label"] = "Corn Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "corn_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["corn_raw"] = {["name"] = "corn_raw", ["label"] = "Raw Corn", ["weight"] = 25, ["type"] = "item", ["image"] = "corn_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["corn"] = {["name"] = "corn", ["label"] = "Corn", ["weight"] = 25, ["type"] = "item", ["image"] = "corn.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tomato_seed"] = {["name"] = "tomato_seed", ["label"] = "Tomato Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "tomato_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tomato_raw"] = {["name"] = "tomato_raw", ["label"] = "Tomato Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "tomato_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["tomato"] = {["name"] = "tomato", ["label"] = "Tomato", ["weight"] = 25, ["type"] = "item", ["image"] = "tomato.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["wheat_seed"] = {["name"] = "wheat_seed", ["label"] = "Wheat Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "wheat_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["wheat_raw"] = {["name"] = "wheat_raw", ["label"] = "Wheat Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "wheat_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["wheat"] = {["name"] = "wheat", ["label"] = "Wheat", ["weight"] = 25, ["type"] = "item", ["image"] = "wheat.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["broccoli_seed"] = {["name"] = "broccoli_seed", ["label"] = "Broccoli Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "broccoli_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["broccoli_raw"] = {["name"] = "broccoli_raw", ["label"] = "Broccoli Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "broccoli_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["broccoli"] = {["name"] = "broccoli", ["label"] = "Broccoli", ["weight"] = 25, ["type"] = "item", ["image"] = "broccoli.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["carrot_seed"] = {["name"] = "carrot_seed", ["label"] = "Carrot Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "carrot_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["carrot_raw"] = {["name"] = "carrot_raw", ["label"] = "Carrot Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "carrot_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["carrot"] = {["name"] = "carrot", ["label"] = "Carrot", ["weight"] = 25, ["type"] = "item", ["image"] = "carrot.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["potato_seed"] = {["name"] = "potato_seed", ["label"] = "Potato Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "potato_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["potato_raw"] = {["name"] = "potato_raw", ["label"] = "Potato Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "potato_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["potato"] = {["name"] = "potato", ["label"] = "Potato", ["weight"] = 25, ["type"] = "item", ["image"] = "potato.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["pickle_seed"] = {["name"] = "pickle_seed", ["label"] = "Pickle Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "pickle_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["pickle_raw"] = {["name"] = "pickle_raw", ["label"] = "Pickle Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "pickle_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["pickle"] = {["name"] = "pickle", ["label"] = "Pickle", ["weight"] = 25, ["type"] = "item", ["image"] = "pickle.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["weed_seed"] = {["name"] = "weed_seed", ["label"] = "Weed Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "weed_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["weed_raw"] = {["name"] = "weed_raw", ["label"] = "Weed Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "weed_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["weed"] = {["name"] = "weed", ["label"] = "Weed", ["weight"] = 25, ["type"] = "item", ["image"] = "weed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cocaine_seed"] = {["name"] = "cocaine_seed", ["label"] = "Cocaine Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "cocaine_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cocaine_raw"] = {["name"] = "cocaine_raw", ["label"] = "Cocaine Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "cocaine_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["cocaine"] = {["name"] = "cocaine", ["label"] = "Cocaine", ["weight"] = 25, ["type"] = "item", ["image"] = "cocaine.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroin_seed"] = {["name"] = "heroin_seed", ["label"] = "Heroin Seed", ["weight"] = 25, ["type"] = "item", ["image"] = "heroin_seed.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroin_raw"] = {["name"] = "heroin_raw", ["label"] = "Heroin Raw", ["weight"] = 25, ["type"] = "item", ["image"] = "heroin_raw.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["heroin"] = {["name"] = "heroin", ["label"] = "Heroin", ["weight"] = 25, ["type"] = "item", ["image"] = "heroin.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["garden_pitcher"] = {["name"] = "garden_pitcher", ["label"] = "Garden Pitcher", ["weight"] = 25, ["type"] = "item", ["image"] = "garden_pitcher.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["garden_shovel"] = {["name"] = "garden_shovel", ["label"] = "Garden Shovel", ["weight"] = 25, ["type"] = "item", ["image"] = "garden_shovel.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
["hunting_horn"] = {["name"] = "hunting_horn", ["label"] = "Hunting Horn", ["weight"] = 1, ["type"] = "item", ["image"] = "hunting_horn.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Shows the nearest animals to you on the map."},
|
||
|
["animal_hide_1"] = {["name"] = "animal_hide_1", ["label"] = "Animal Hide G1", ["weight"] = 100, ["type"] = "item", ["image"] = "animal_hide_1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["animal_hide_2"] = {["name"] = "animal_hide_2", ["label"] = "Animal Hide G2", ["weight"] = 100, ["type"] = "item", ["image"] = "animal_hide_2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["animal_hide_3"] = {["name"] = "animal_hide_3", ["label"] = "Animal Hide G3", ["weight"] = 100, ["type"] = "item", ["image"] = "animal_hide_3.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["animal_meat_1"] = {["name"] = "animal_meat_1", ["label"] = "Animal Meat G1", ["weight"] = 1000, ["type"] = "item", ["image"] = "animal_meat_1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["animal_meat_2"] = {["name"] = "animal_meat_2", ["label"] = "Animal Meat G2", ["weight"] = 1000, ["type"] = "item", ["image"] = "animal_meat_2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
["animal_meat_3"] = {["name"] = "animal_meat_3", ["label"] = "Animal Meat G3", ["weight"] = 1000, ["type"] = "item", ["image"] = "animal_meat_3.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||
|
|
||
|
['chain_v'] = {['name'] = 'chain_v', ['label'] = 'Vlone | Silver/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'chain_v.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_v1'] = {['name'] = 'chain_v1', ['label'] = 'Vlone | Gold/Silver', ['weight'] = 1, ['type'] = 'item', ['image'] = 'chain_v.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_v2'] = {['name'] = 'chain_v2', ['label'] = 'Vlone | Silver/Black', ['weight'] = 1, ['type'] = 'item', ['image'] = 'chain_v.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_bdb'] = {['name'] = 'chain_bdb', ['label'] = 'BDB Chain', ['weight'] = 1, ['type'] = 'item', ['image'] = 'billiondollarbaby.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_cp1'] = {['name'] = 'chain_cp1', ['label'] = 'Cross Chain', ['weight'] = 1, ['type'] = 'item', ['image'] = 'crosschain1.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_cp2'] = {['name'] = 'chain_cp2', ['label'] = 'Cross Chain', ['weight'] = 1, ['type'] = 'item', ['image'] = 'crosschain2.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_skull'] = {['name'] = 'chain_skull', ['label'] = 'Iced out Skull', ['weight'] = 1, ['type'] = 'item', ['image'] = 'skull1.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_skull2'] = {['name'] = 'chain_skull2', ['label'] = 'Iced out Skull', ['weight'] = 1, ['type'] = 'item', ['image'] = 'skull2.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_skull3'] = {['name'] = 'chain_skull3', ['label'] = 'Iced out Skull', ['weight'] = 1, ['type'] = 'item', ['image'] = 'skull3.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_skull4'] = {['name'] = 'chain_skull4', ['label'] = 'Iced out Skull', ['weight'] = 1, ['type'] = 'item', ['image'] = 'skull4.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_skull5'] = {['name'] = 'chain_skull5', ['label'] = 'Iced out Skull', ['weight'] = 1, ['type'] = 'item', ['image'] = 'skull5.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_skull6'] = {['name'] = 'chain_skull6', ['label'] = 'Iced out Skull', ['weight'] = 1, ['type'] = 'item', ['image'] = 'skull6.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_skull7'] = {['name'] = 'chain_skull7', ['label'] = 'Iced out Skull', ['weight'] = 1, ['type'] = 'item', ['image'] = 'skull7.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_nocap'] = {['name'] = 'chain_nocap', ['label'] = 'Iced out NOCAP', ['weight'] = 1, ['type'] = 'item', ['image'] = 'chain_nocap.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_snake'] = {['name'] = 'chain_snake', ['label'] = 'Iced out Snake Bite', ['weight'] = 1, ['type'] = 'item', ['image'] = 'trustnoone.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_link'] = {['name'] = 'chain_link', ['label'] = 'Iced out linked Chain', ['weight'] = 1, ['type'] = 'item', ['image'] = 'chain_link.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au1'] = {['name'] = 'chain_au1', ['label'] = 'Among Us | All Gold ', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus1.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au2'] = {['name'] = 'chain_au2', ['label'] = 'Among Us | Red/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus2.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au3'] = {['name'] = 'chain_au3', ['label'] = 'Among Us | Blue/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus3.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au4'] = {['name'] = 'chain_au4', ['label'] = 'Among Us | White/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus4.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au5'] = {['name'] = 'chain_au5', ['label'] = 'Among Us | Green/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus5.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au6'] = {['name'] = 'chain_au6', ['label'] = 'Among Us | Black/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus6.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au7'] = {['name'] = 'chain_au7', ['label'] = 'Among Us | Purple/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus7.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au8'] = {['name'] = 'chain_au8', ['label'] = 'Among Us | Cyan/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus8.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au9'] = {['name'] = 'chain_au9', ['label'] = 'Among Us | Orange/Gold', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus9.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au10'] = {['name'] = 'chain_au10', ['label'] = 'Among Us | Black/Diamond', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus10.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au11'] = {['name'] = 'chain_au11', ['label'] = 'Among Us | Gold/Diamond', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus11.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au12'] = {['name'] = 'chain_au12', ['label'] = 'Among Us | Red/Diamond', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus12.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au13'] = {['name'] = 'chain_au13', ['label'] = 'Among Us | Green/Diamond', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus13.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au14'] = {['name'] = 'chain_au14', ['label'] = 'Among Us | Pink/Diamond', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus14.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au15'] = {['name'] = 'chain_au15', ['label'] = 'Among Us | Blue/Diamond', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus15.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
['chain_au16'] = {['name'] = 'chain_au16', ['label'] = 'Among Us | White/Diamond', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amongus16.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Add a lil bit of drip'},
|
||
|
|
||
|
["head_bag"] = {["name"] = "head_bag", ["label"] = "Head Bag", ["weight"] = 5, ["type"] = "item", ["image"] = "head_bag.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Put mask on hostage."},
|
||
|
|
||
|
['potato'] = {['name'] = 'potato', ['label'] = 'Potato', ['weight'] = 350, ['type'] = 'item', ['image'] = 'potato.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Po-ta-to'},
|
||
|
['dirty_potato'] = {['name'] = 'dirty_potato', ['label'] = 'Dirty Potato', ['weight'] = 350, ['type'] = 'item', ['image'] = 'dirty_potato.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Po-ta-to'},
|
||
|
['tomato'] = {['name'] = 'tomato', ['label'] = 'Tomato', ['weight'] = 350, ['type'] = 'item', ['image'] = 'tomato.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To-ma-to'},
|
||
|
['dirty_tomato'] = {['name'] = 'dirty_tomato', ['label'] = 'Dirty Tomato', ['weight'] = 350, ['type'] = 'item', ['image'] = 'dirty_tomato.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'To-ma-to'},
|
||
|
['coffee_beans'] = {['name'] = 'coffee_beans', ['label'] = 'Coffee Beans', ['weight'] = 350, ['type'] = 'item', ['image'] = 'coffee_beans.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wakey wakey!'},
|
||
|
['dirty_coffee_beans'] = {['name'] = 'dirty_coffee_beans', ['label'] = 'Dirty Coffee Beans', ['weight'] = 350, ['type'] = 'item', ['image'] = 'dirty_coffee_beans.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wakey wakey!'},
|
||
|
['cabbage'] = {['name'] = 'cabbage', ['label'] = 'Cabbage', ['weight'] = 350, ['type'] = 'item', ['image'] = 'np_ingredients_cabbage.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Let-tuce? No!'},
|
||
|
['dirty_cabbage'] = {['name'] = 'dirty_cabbage', ['label'] = 'Dirty Cabbage', ['weight'] = 350, ['type'] = 'item', ['image'] = 'np_ingredients_cabbage.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Let-tuce? No!'},
|
||
|
['orange'] = {['name'] = 'orange', ['label'] = 'Orange', ['weight'] = 350, ['type'] = 'item', ['image'] = 'orange.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The talking orange!'},
|
||
|
['dirty_orange'] = {['name'] = 'dirty_orange', ['label'] = 'Dirty Orange', ['weight'] = 350, ['type'] = 'item', ['image'] = 'dirty_orange.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'The talking orange!'},
|
||
|
['trowel'] = {['name'] = 'trowel', ['label'] = 'Trowel', ['weight'] = 350, ['type'] = 'item', ['image'] = 'trowel.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mini-shovel yes'},
|
||
|
['shovel'] = {['name'] = 'shovel', ['label'] = 'Shovel', ['weight'] = 350, ['type'] = 'item', ['image'] = 'shovel.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Legit shovel yes'},
|
||
|
|
||
|
["alive_chicken"] = {["name"] = "alive_chicken", ["label"] = "Alive chicken", ["weight"] = 2000, ["type"] = "item", ["image"] = "alive_chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Alive Chicken"},
|
||
|
["slaughtered_chicken"] = {["name"] = "slaughtered_chicken", ["label"] = "Slaughtered chicken", ["weight"] = 2000, ["type"] = "item", ["image"] = "slaughteredchicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Slaughtered Chicken"},
|
||
|
["packagedchicken"] = {["name"] = "packagedchicken", ["label"] = "Packaged chicken", ["weight"] = 2000, ["type"] = "item", ["image"] = "packaged_chicken.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Packaged Chicken"},
|
||
|
['mdtcitation'] = {['name'] = 'mdtcitation', ['label'] = 'Bøde', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'citation.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bøde fra politiet'},
|
||
|
}
|