mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 01:08:57 +00:00
7806 lines
263 KiB
Lua
7806 lines
263 KiB
Lua
QBShared = {}
|
|
|
|
local StringCharset = {}
|
|
local NumberCharset = {}
|
|
|
|
for i = 48, 57 do table.insert(NumberCharset, string.char(i)) end
|
|
for i = 65, 90 do table.insert(StringCharset, string.char(i)) end
|
|
for i = 97, 122 do table.insert(StringCharset, string.char(i)) end
|
|
|
|
QBShared.RandomStr = function(length) -- QBShared.RandomStr falls under GPL License here: [esxlicense]/LICENSE
|
|
if length > 0 then
|
|
return QBShared.RandomStr(length-1) .. StringCharset[math.random(1, #StringCharset)]
|
|
else
|
|
return ''
|
|
end
|
|
end
|
|
|
|
QBShared.RandomInt = function(length)
|
|
if length > 0 then
|
|
return QBShared.RandomInt(length-1) .. NumberCharset[math.random(1, #NumberCharset)]
|
|
else
|
|
return ''
|
|
end
|
|
end
|
|
|
|
QBShared.SplitStr = function(str, delimiter)
|
|
local result = { }
|
|
local from = 1
|
|
local delim_from, delim_to = string.find( str, delimiter, from )
|
|
while delim_from do
|
|
table.insert( result, string.sub( str, from , delim_from-1 ) )
|
|
from = delim_to + 1
|
|
delim_from, delim_to = string.find( str, delimiter, from )
|
|
end
|
|
table.insert( result, string.sub( str, from ) )
|
|
return result
|
|
end
|
|
|
|
QBShared.StarterItems = {
|
|
["phone"] = {amount = 1, item = "phone"},
|
|
["id_card"] = {amount = 1, item = "id_card"},
|
|
["driver_license"] = {amount = 1, item = "driver_license"},
|
|
}
|
|
|
|
QBShared.Items = {
|
|
-- // WEAPONS
|
|
["weapon_unarmed"] = {["name"] = "weapon_unarmed", ["label"] = "Fists", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "placeholder.png", ["unique"] = true, ["useable"] = false, ["description"] = "Fisticuffs"},
|
|
["weapon_knife"] = {["name"] = "weapon_knife", ["label"] = "Knife", ["weight"] = 1000, ["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_nightstick"] = {["name"] = "weapon_nightstick", ["label"] = "Nightstick", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_nightstick.png", ["unique"] = true, ["useable"] = false, ["description"] = "A police officer's club or billy"},
|
|
["weapon_hammer"] = {["name"] = "weapon_hammer", ["label"] = "Hammer", ["weight"] = 1000, ["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_bat"] = {["name"] = "weapon_bat", ["label"] = "Bat", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_bat.png", ["unique"] = true, ["useable"] = false, ["description"] = "Used for hitting a ball in sports (or other things)"},
|
|
["weapon_golfclub"] = {["name"] = "weapon_golfclub", ["label"] = "Golfclub", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_golfclub.png", ["unique"] = true, ["useable"] = false, ["description"] = "A club used to hit the ball in golf"},
|
|
["weapon_crowbar"] = {["name"] = "weapon_crowbar", ["label"] = "Crowbar", ["weight"] = 1000, ["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_pistol"] = {["name"] = "weapon_pistol", ["label"] = "Walther P99", ["weight"] = 1000, ["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"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_PISTOL", ["image"] = "weapon_pistolmk2.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"] = 1000, ["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"] = 1000, ["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_pistol50"] = {["name"] = "weapon_pistol50", ["label"] = "Pistol .50 Cal", ["weight"] = 1000, ["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_microsmg"] = {["name"] = "weapon_microsmg", ["label"] = "Micro SMG", ["weight"] = 1000, ["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"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_smg.png", ["unique"] = true, ["useable"] = false, ["description"] = "A handheld lightweight machine gun"},
|
|
["weapon_assaultsmg"] = {["name"] = "weapon_assaultsmg", ["label"] = "Assault SMG", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_assaultsmg.png", ["unique"] = true, ["useable"] = false, ["description"] = "An assault version of a handheld lightweight machine gun"},
|
|
["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_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_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_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_pumpshotgun"] = {["name"] = "weapon_pumpshotgun", ["label"] = "Pump Shotgun", ["weight"] = 1000, ["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"] = 1000, ["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"] = 1000, ["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"] = 1000, ["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_stungun"] = {["name"] = "weapon_stungun", ["label"] = "Taser", ["weight"] = 1000, ["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_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_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_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_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_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_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_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_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_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_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_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_briefcase"] = {["name"] = "weapon_briefcase", ["label"] = "Briefcase", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_briefcase.png", ["unique"] = true, ["useable"] = false, ["description"] = "A briefcase"},
|
|
["weapon_briefcase_02"] = {["name"] = "weapon_briefcase_02", ["label"] = "Briefcase", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_briefcase2.png", ["unique"] = true, ["useable"] = false, ["description"] = "A briefcase"},
|
|
["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_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"},
|
|
["weapon_snspistol"] = {["name"] = "weapon_snspistol", ["label"] = "SNS Pistol", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_PISTOL", ["image"] = "weapon_snspistol.png", ["unique"] = true, ["useable"] = false, ["description"] = "A very small firearm designed to be easily concealed"},
|
|
["weapon_bottle"] = {["name"] = "weapon_bottle", ["label"] = "Broken Bottle", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_bottle.png", ["unique"] = true, ["useable"] = false, ["description"] = "A broken bottle"},
|
|
["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_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_heavypistol"] = {["name"] = "weapon_heavypistol", ["label"] = "Heavy Pistol", ["weight"] = 1000, ["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_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_dagger"] = {["name"] = "weapon_dagger", ["label"] = "Dagger", ["weight"] = 1000, ["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_vintagepistol"] = {["name"] = "weapon_vintagepistol", ["label"] = "Vintage Pistol", ["weight"] = 1000, ["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_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_musket"] = {["name"] = "weapon_musket", ["label"] = "Musket", ["weight"] = 1000, ["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"] = 1000, ["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_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_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_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_flaregun"] = {["name"] = "weapon_flaregun", ["label"] = "Flare Gun", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_FLARE", ["image"] = "weapon_flaregun.png", ["unique"] = true, ["useable"] = false, ["description"] = "A handgun for firing signal rockets"},
|
|
["weapon_garbagebag"] = {["name"] = "weapon_garbagebag", ["label"] = "Garbage Bag", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_garbagebag.png", ["unique"] = true, ["useable"] = false, ["description"] = "A garbage bag"},
|
|
["weapon_handcuffs"] = {["name"] = "weapon_handcuffs", ["label"] = "Handcuffs", ["weight"] = 1000, ["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_combatpdw"] = {["name"] = "weapon_combatpdw", ["label"] = "Combat PDW", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_combatpdw.png", ["unique"] = true, ["useable"] = false, ["description"] = "A combat version of a handheld lightweight machine gun"},
|
|
["weapon_marksmanpistol"] = {["name"] = "weapon_marksmanpistol", ["label"] = "Marksman Pistol", ["weight"] = 1000, ["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_knuckle"] = {["name"] = "weapon_knuckle", ["label"] = "Knuckle", ["weight"] = 1000, ["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_hatchet"] = {["name"] = "weapon_hatchet", ["label"] = "Hatchet", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_PISTOL", ["image"] = "weapon_hatchet.png", ["unique"] = true, ["useable"] = false, ["description"] = "A small axe with a short handle for use in one hand"},
|
|
["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_machete"] = {["name"] = "weapon_machete", ["label"] = "Machete", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_machete.png", ["unique"] = true, ["useable"] = false, ["description"] = "A broad, heavy knife used as a weapon"},
|
|
["weapon_machinepistol"] = {["name"] = "weapon_machinepistol", ["label"] = "Tec-9", ["weight"] = 1000, ["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_switchblade"] = {["name"] = "weapon_switchblade", ["label"] = "Switchblade", ["weight"] = 1000, ["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_revolver"] = {["name"] = "weapon_revolver", ["label"] = "Revolver", ["weight"] = 1000, ["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_dbshotgun"] = {["name"] = "weapon_dbshotgun", ["label"] = "Double-barrel Shotgun", ["weight"] = 1000, ["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_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_autoshotgun"] = {["name"] = "weapon_autoshotgun", ["label"] = "Auto Shotgun", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SHOTGUN", ["image"] = "weapon_autoshotgun.png", ["unique"] = true, ["useable"] = false, ["description"] = "A shotgun capable of rapid continous fire"},
|
|
["weapon_battleaxe"] = {["name"] = "weapon_battleaxe", ["label"] = "Battle Axe", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_battleaxe.png", ["unique"] = true, ["useable"] = false, ["description"] = "A large broad-bladed axe used in ancient warfare"},
|
|
["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_minismg"] = {["name"] = "weapon_minismg", ["label"] = "Mini SMG", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_minismg.png", ["unique"] = true, ["useable"] = false, ["description"] = "A mini handheld lightweight machine gun"},
|
|
["weapon_pipebomb"] = {["name"] = "weapon_pipebomb", ["label"] = "Pipe bom", ["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_poolcue"] = {["name"] = "weapon_poolcue", ["label"] = "Poolcue", ["weight"] = 1000, ["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_wrench"] = {["name"] = "weapon_wrench", ["label"] = "Wrench", ["weight"] = 1000, ["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_bread"] = {["name"] = "weapon_bread", ["label"] = "Baquette", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "baquette.png", ["unique"] = true, ["useable"] = false, ["description"] = "Bread..?"},
|
|
["weapon_flashlight"] = {["name"] = "weapon_flashlight", ["label"] = "Flashlight", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_flashlight.png", ["unique"] = true, ["useable"] = false, ["description"] = "A battery-operated portable light"},
|
|
|
|
|
|
-- // 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."},
|
|
["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."},
|
|
["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."},
|
|
["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."},
|
|
["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"},
|
|
["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"},
|
|
["beer"] = {["name"] = "beer", ["label"] = "Beer", ["weight"] = 500, ["type"] = "item", ["image"] = "beer.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "For all the thirsty out there"},
|
|
["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"},
|
|
["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"},
|
|
["coffee"] = {["name"] = "coffee", ["label"] = "Coffee", ["weight"] = 200, ["type"] = "item", ["image"] = "coffee.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Pump 4 Caffeine"},
|
|
["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"},
|
|
["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"},
|
|
["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"},
|
|
["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"},
|
|
["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."},
|
|
["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."},
|
|
["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"},
|
|
["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."},
|
|
["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."},
|
|
["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."},
|
|
["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."},
|
|
["iron"] = {["name"] = "iron", ["label"] = "Iron", ["weight"] = 100, ["type"] = "item", ["image"] = "ironplate.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Handy piece of metal that you can probably use for something."},
|
|
["ironoxide"] = {["name"] = "ironoxide", ["label"] = "Iron Powder", ["weight"] = 100, ["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."},
|
|
["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."},
|
|
["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"},
|
|
["glass"] = {["name"] = "glass", ["label"] = "Glass", ["weight"] = 100, ["type"] = "item", ["image"] = "glassplate.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "It is very fragile, watch out."},
|
|
["pistol_ammo"] = {["name"] = "pistol_ammo", ["label"] = "Pistol ammo", ["weight"] = 200, ["type"] = "item", ["image"] = "pistol_ammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ammo for Pistols."},
|
|
["rifle_ammo"] = {["name"] = "rifle_ammo", ["label"] = "Rifle ammo", ["weight"] = 1000, ["type"] = "item", ["image"] = "rifle_ammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ammo for Rifles."},
|
|
["smg_ammo"] = {["name"] = "smg_ammo", ["label"] = "SMG ammo", ["weight"] = 500, ["type"] = "item", ["image"] = "smg_ammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ammo for Sub Machine Guns."},
|
|
["shotgun_ammo"] = {["name"] = "shotgun_ammo", ["label"] = "Shotgun ammo", ["weight"] = 500, ["type"] = "item", ["image"] = "shotgun_ammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ammo for Shotguns."},
|
|
["mg_ammo"] = {["name"] = "mg_ammo", ["label"] = "MG ammo", ["weight"] = 1000, ["type"] = "item", ["image"] = "mg_ammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ammo for Machine Guns."},
|
|
["snp_ammo"] = {["name"] = "snp_ammo", ["label"] = "Sniper ammo", ["weight"] = 1000, ["type"] = "item", ["image"] = "snp_ammo.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Ammo for Sniper Rifles."},
|
|
["lockpick"] = {["name"] = "lockpick", ["label"] = "Lockpick", ["weight"] = 300, ["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..."},
|
|
["advancedlockpick"] = {["name"] = "advancedlockpick", ["label"] = "Advanced Lockpick", ["weight"] = 500, ["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 :)"},
|
|
["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."},
|
|
["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.. a little better.."},
|
|
["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!"},
|
|
["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.."},
|
|
["drill"] = {["name"] = "drill", ["label"] = "Drill", ["weight"] = 20000, ["type"] = "item", ["image"] = "drill.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "The real deal.."},
|
|
["weed_white-widow"] = {["name"] = "weed_white-widow", ["label"] = "White Widow 2g", ["weight"] = 200, ["type"] = "item", ["image"] = "weed-baggie.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"] = 200, ["type"] = "item", ["image"] = "weed-baggie.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"] = 200, ["type"] = "item", ["image"] = "weed-baggie.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"] = 200, ["type"] = "item", ["image"] = "weed-baggie.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"] = 200, ["type"] = "item", ["image"] = "weed-baggie.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"] = 200, ["type"] = "item", ["image"] = "weed-baggie.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-plant-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-plant-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-plant-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-plant-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-plant-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-plant-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-empty-bag.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A empty bag for weed buds"},
|
|
["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"},
|
|
["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?"},
|
|
["tunerlaptop"] = {["name"] = "tunerlaptop", ["label"] = "Tunerchip", ["weight"] = 2000, ["type"] = "item", ["image"] = "tunerlaptop.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 lol"},
|
|
["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 evidence. Think about DNA from blood, bullet shells etc."},
|
|
["filled_evidence_bag"] = {["name"] = "filled_evidence_bag", ["label"] = "Evidence Bag", ["weight"] = 200, ["type"] = "item", ["image"] = "evidence.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A filled evidence bag to see who committed the crime >:("},
|
|
["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? (One-time use)"},
|
|
["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?"},
|
|
["weed_brick"] = {["name"] = "weed_brick", ["label"] = "Weed Brick", ["weight"] = 1000, ["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"] = 1000, ["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"] = 350, ["type"] = "item", ["image"] = "coke_small_brick.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A lot of grams cocaine, mostly used for deals and takes a lot of space."},
|
|
["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."},
|
|
["electronickit"] = {["name"] = "electronickit", ["label"] = "Electronic Kit", ["weight"] = 100, ["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?"},
|
|
["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."},
|
|
["rolex"] = {["name"] = "rolex", ["label"] = "Golden Watch", ["weight"] = 1500, ["type"] = "item", ["image"] = "rolex_watch.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A golden watch seems like the jackpot to me!"},
|
|
["diamond_ring"] = {["name"] = "diamond_ring", ["label"] = "Diamond Ring", ["weight"] = 1500, ["type"] = "item", ["image"] = "diamond_ring.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A diamond ring seems like the jackpot to me!"},
|
|
["goldchain"] = {["name"] = "goldchain", ["label"] = "Golden Chain", ["weight"] = 1500, ["type"] = "item", ["image"] = "goldchain.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A golden chain seems like the jackpot to me!"},
|
|
["10kgoldchain"] = {["name"] = "10kgoldchain", ["label"] = "10k Gold Chain", ["weight"] = 2000, ["type"] = "item", ["image"] = "10kgoldchain.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "10 carat golden chain."},
|
|
["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."},
|
|
["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 belonging to the Blaine County Savings Bank."},
|
|
["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 belonging to the Pacific Savings Bank."},
|
|
["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."},
|
|
["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"] = "This is a placeholder description"},
|
|
["radio"] = {["name"] = "radio", ["label"] = "Radio", ["weight"] = 2000, ["type"] = "item", ["image"] = "radio.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "You can communicat with this through a signaal"},
|
|
["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 :)"},
|
|
["phone"] = {["name"] = "phone", ["label"] = "Phone", ["weight"] = 700, ["type"] = "item", ["image"] = "phone.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Neat phone ya got there"},
|
|
["fitbit"] = {["name"] = "fitbit", ["label"] = "Fitbit", ["weight"] = 500, ["type"] = "item", ["image"] = "fitbit.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "I like fitbit"},
|
|
["thermite"] = {["name"] = "thermite", ["label"] = "Thermite", ["weight"] = 1000, ["type"] = "item", ["image"] = "thermite.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sometimes you'd want everything to burn.."},
|
|
["goldbar"] = {["name"] = "goldbar", ["label"] = "Gold Bar", ["weight"] = 7000, ["type"] = "item", ["image"] = "goldbar.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Looks expensive to me o.o"},
|
|
["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..?"},
|
|
["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.."},
|
|
["dendrogyra_coral"] = {["name"] = "dendrogyra_coral", ["label"] = "Dendrogyra", ["weight"] = 1000, ["type"] = "item", ["image"] = "dendrogyra_coral.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "#Coral yow"},
|
|
["antipatharia_coral"] = {["name"] = "antipatharia_coral", ["label"] = "Antipatharia", ["weight"] = 1000, ["type"] = "item", ["image"] = "antipatharia_coral.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "#Coral yow"},
|
|
["jerry_can"] = {["name"] = "jerry_can", ["label"] = "Jerrycan 20L", ["weight"] = 20000, ["type"] = "item", ["image"] = "jerry_can.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "#Fuel like #YOLO"},
|
|
["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."},
|
|
["diving_gear"] = {["name"] = "diving_gear", ["label"] = "Diving Gear", ["weight"] = 30000, ["type"] = "item", ["image"] = "diving_gear.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Hmm lets dive lol yay."},
|
|
["parachute"] = {["name"] = "parachute", ["label"] = "Parachute", ["weight"] = 30000, ["type"] = "item", ["image"] = "parachute.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "The sky is the limit! Woohoo!"},
|
|
-- ["smoketrailred"] = {["name"] = "smoketrailred", ["label"] = "Smoke Trail Red", ["weight"] = 50, ["type"] = "item", ["image"] = "smoketrailred.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Leaves a red trail when flying. Woot!"},
|
|
["snspistol_part_1"] = {["name"] = "snspistol_part_1", ["label"] = "SNS Loop", ["weight"] = 1500, ["type"] = "item", ["image"] = "snspistol_part_1.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Loop of a SNS Pistol"},
|
|
["snspistol_part_2"] = {["name"] = "snspistol_part_2", ["label"] = "SNS Trigger", ["weight"] = 1500, ["type"] = "item", ["image"] = "snspistol_part_2.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Trigger of a SNS Pistol"},
|
|
["snspistol_part_3"] = {["name"] = "snspistol_part_3", ["label"] = "SNS Clip", ["weight"] = 1500, ["type"] = "item", ["image"] = "snspistol_part_3.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = {accept = {"snspistol_part_1"}, reward = "snspistol_stage_1", anim = {["dict"] = "anim@amb@business@weed@weed_inspecting_high_dry@", ["lib"] = "weed_inspecting_high_base_inspector", ["text"] = "Atttaching attachments", ["timeOut"] = 15000,}}, ["description"] = "Clip of a SNS Pistol"},
|
|
["snspistol_stage_1"] = {["name"] = "snspistol_stage_1", ["label"] = "SNS Body", ["weight"] = 2500, ["type"] = "item", ["image"] = "snspistol_stage_1.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = {accept = {"snspistol_part_2"}, reward = "weapon_snspistol", anim = {["dict"] = "anim@amb@business@weed@weed_inspecting_high_dry@", ["lib"] = "weed_inspecting_high_base_inspector", ["text"] = "Attaching attachments", ["timeOut"] = 15000,}}, ["description"] = "SNS w/ Loop & Clip"},
|
|
["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"},
|
|
["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"},
|
|
["binoculars"] = {["name"] = "binoculars", ["label"] = "Binoculars", ["weight"] = 600, ["type"] = "item", ["image"] = "binoculars.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sneaky Breaky.."},
|
|
["snowball"] = {["name"] = "snowball", ["label"] = "Snowball", ["weight"] = 0, ["type"] = "item", ["image"] = "snowball.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Should have catched it :D"},
|
|
["firework1"] = {["name"] = "firework1", ["label"] = "2Brothers", ["weight"] = 1000, ["type"] = "item", ["image"] = "firework1.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Happy and healthy 2020 <3 Lua Leaks"},
|
|
["firework2"] = {["name"] = "firework2", ["label"] = "Poppelers", ["weight"] = 1000, ["type"] = "item", ["image"] = "firework2.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Happy and healthy 2020 <3 Lua Leaks"},
|
|
["firework3"] = {["name"] = "firework3", ["label"] = "WipeOut", ["weight"] = 1000, ["type"] = "item", ["image"] = "firework3.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Happy and healthy 2020 <3 Lua Leaks"},
|
|
["firework4"] = {["name"] = "firework4", ["label"] = "Weeping Willow", ["weight"] = 1000, ["type"] = "item", ["image"] = "firework4.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Happy and healthy 2020 <3 Lua Leaks"},
|
|
["iphone"] = {["name"] = "iphone", ["label"] = "iPhone", ["weight"] = 1000, ["type"] = "item", ["image"] = "iphone.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Very expensive phone"},
|
|
["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"},
|
|
["laptop"] = {["name"] = "laptop", ["label"] = "Laptop", ["weight"] = 4000, ["type"] = "item", ["image"] = "laptop.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Expensive game right?"},
|
|
["tablet"] = {["name"] = "tablet", ["label"] = "Tablet", ["weight"] = 2000, ["type"] = "item", ["image"] = "tablet.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Expensive game right?"},
|
|
["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"},
|
|
["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"},
|
|
["nitrous"] = {["name"] = "nitrous", ["label"] = "Nitrous", ["weight"] = 1000, ["type"] = "item", ["image"] = "nitrous.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Speed up, gas pedal! :D"},
|
|
["walkstick"] = {["name"] = "walkstick", ["label"] = "Walk 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"},
|
|
["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 caaaaaaaaaaaaaar.."},
|
|
["markedbills"] = {["name"] = "markedbills", ["label"] = "Marked Money", ["weight"] = 1000, ["type"] = "item", ["image"] = "markedbills.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["pistol_suppressor"] = {["name"] = "pistol_suppressor", ["label"] = "Pistol Silencer", ["weight"] = 1000, ["type"] = "item", ["image"] = "pistol_suppressor.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["pistol_extendedclip"] = {["name"] = "pistol_extendedclip", ["label"] = "Pistol EXT Clip", ["weight"] = 1000, ["type"] = "item", ["image"] = "pistol_extendedclip.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["smg_extendedclip"] = {["name"] = "smg_extendedclip", ["label"] = "SMG EXT Clip", ["weight"] = 1000, ["type"] = "item", ["image"] = "smg_extendedclip.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["smg_flashlight"] = {["name"] = "smg_flashlight", ["label"] = "SMG Flashlight", ["weight"] = 1000, ["type"] = "item", ["image"] = "smg_flashlight.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["smg_scope"] = {["name"] = "smg_scope", ["label"] = "SMG Scope", ["weight"] = 1000, ["type"] = "item", ["image"] = "smg_scope.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["smg_suppressor"] = {["name"] = "smg_suppressor", ["label"] = "SMG Silencer", ["weight"] = 1000, ["type"] = "item", ["image"] = "smg_suppressor.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["rifle_extendedclip"] = {["name"] = "rifle_extendedclip", ["label"] = "Rifle EXT Clip", ["weight"] = 1000, ["type"] = "item", ["image"] = "rifle_extendedclip.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["rifle_drummag"] = {["name"] = "rifle_drummag", ["label"] = "Rifle Drummag", ["weight"] = 1000, ["type"] = "item", ["image"] = "rifle_drummag.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["rifle_suppressor"] = {["name"] = "rifle_suppressor", ["label"] = "Rifle Silencer", ["weight"] = 1000, ["type"] = "item", ["image"] = "rifle_suppressor.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Money?"},
|
|
["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..?"},
|
|
["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"},
|
|
["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."},
|
|
["printerdocument"] = {["name"] = "printerdocument", ["label"] = "Document", ["weight"] = 500, ["type"] = "item", ["image"] = "printerdocument.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A nice document"},
|
|
["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"},
|
|
["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"},
|
|
["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."},
|
|
["ephedrine"] = {["name"] = "ephedrine", ["label"] = "ephedrine", ["weight"] = 200, ["type"] = "item", ["image"] = "chemical1.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "make some meth"},
|
|
["hydrochloricacid"] = {["name"] = "hydrochloricacid", ["label"] = "hydrochloricacid", ["weight"] = 200, ["type"] = "item", ["image"] = "chemical1.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "make some meth"},
|
|
["acetone"] = {["name"] = "acetone", ["label"] = "acetone", ["weight"] = 200, ["type"] = "item", ["image"] = "chemical2.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "make some meth"},
|
|
["puremeth"] = {["name"] = "puremeth", ["label"] = "meth", ["weight"] = 100, ["type"] = "item", ["image"] = "meth10g.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sell some Meth"},
|
|
["meth"] = {["name"] = "meth", ["label"] = "meth", ["weight"] = 100, ["type"] = "item", ["image"] = "meth10g.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "Sell some Meth"},
|
|
["methtray"] = {["name"] = "methtray", ["label"] = "Meth Tray", ["weight"] = 200, ["type"] = "item", ["image"] = "methbrick.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "make some meth"},
|
|
["puremethtray"] = {["name"] = "puremethtray", ["label"] = "Pure Meth Tray", ["weight"] = 200, ["type"] = "item", ["image"] = "methbrick.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "make some meth"},
|
|
["grape"] = {["name"] = "grape", ["label"] = "Grape", ["weight"] = 100, ["type"] = "item", ["image"] = "grape.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Mmmmh yummie, grapes."},
|
|
["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."},
|
|
["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.."},
|
|
["cocaleaf"] = {["name"] = "cocaleaf", ["label"] = "Cocaine Leaf", ["weight"] = 200, ["type"] = "item", ["image"] = "cocaineleaf.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Make that white girl"},
|
|
}
|
|
|
|
-- // HASH WEAPON ITEMS, NEED SOMETIMES TO GET INFO FOR CLIENT
|
|
|
|
QBShared.Weapons = {
|
|
-- // WEAPONS
|
|
[`weapon_unarmed`] = {["name"] = "weapon_unarmed", ["label"] = "Fists", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "placeholder.png", ["unique"] = true, ["useable"] = false, ["description"] = "Fisticuffs"},
|
|
[`weapon_knife`] = {["name"] = "weapon_knife", ["label"] = "Knife", ["weight"] = 1000, ["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_nightstick`] = {["name"] = "weapon_nightstick", ["label"] = "Nightstick", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_nightstick.png", ["unique"] = true, ["useable"] = false, ["description"] = "A police officer's club or billy"},
|
|
[`weapon_hammer`] = {["name"] = "weapon_hammer", ["label"] = "Hammer", ["weight"] = 1000, ["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_bat`] = {["name"] = "weapon_bat", ["label"] = "Bat", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_bat.png", ["unique"] = true, ["useable"] = false, ["description"] = "Used for hitting a ball in sports (or other things)"},
|
|
[`weapon_golfclub`] = {["name"] = "weapon_golfclub", ["label"] = "Golfclub", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_golfclub.png", ["unique"] = true, ["useable"] = false, ["description"] = "A club used to hit the ball in golf"},
|
|
[`weapon_crowbar`] = {["name"] = "weapon_crowbar", ["label"] = "Crowbar", ["weight"] = 1000, ["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_pistol`] = {["name"] = "weapon_pistol", ["label"] = "Walther P99", ["weight"] = 1000, ["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"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_PISTOL", ["image"] = "weapon_pistolmk2.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"] = 1000, ["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"] = 1000, ["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_pistol50`] = {["name"] = "weapon_pistol50", ["label"] = "Pistol .50 Cal", ["weight"] = 1000, ["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_microsmg`] = {["name"] = "weapon_microsmg", ["label"] = "Micro SMG", ["weight"] = 1000, ["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"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_smg.png", ["unique"] = true, ["useable"] = false, ["description"] = "A handheld lightweight machine gun"},
|
|
[`weapon_assaultsmg`] = {["name"] = "weapon_assaultsmg", ["label"] = "Assault SMG", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_assaultsmg.png", ["unique"] = true, ["useable"] = false, ["description"] = "An assault version of a handheld lightweight machine gun"},
|
|
[`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_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_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_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_pumpshotgun`] = {["name"] = "weapon_pumpshotgun", ["label"] = "Pump Shotgun", ["weight"] = 1000, ["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"] = 1000, ["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"] = 1000, ["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"] = 1000, ["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_stungun`] = {["name"] = "weapon_stungun", ["label"] = "Taser", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_taser.png", ["unique"] = true, ["useable"] = false, ["description"] = "A weapon firing barbs attached by wires to batteries, causing temporary paralysis"},
|
|
[`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_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_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_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_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_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_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_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_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_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_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_briefcase`] = {["name"] = "weapon_briefcase", ["label"] = "Briefcase", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_briefcase.png", ["unique"] = true, ["useable"] = false, ["description"] = "A briefcase"},
|
|
[`weapon_briefcase_02`] = {["name"] = "weapon_briefcase_02", ["label"] = "Briefcase", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_briefcase2.png", ["unique"] = true, ["useable"] = false, ["description"] = "A briefcase"},
|
|
[`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_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"},
|
|
[`weapon_snspistol`] = {["name"] = "weapon_snspistol", ["label"] = "SNS Pistol", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_PISTOL", ["image"] = "weapon_snspistol.png", ["unique"] = true, ["useable"] = false, ["description"] = "A very small firearm designed to be easily concealed"},
|
|
[`weapon_bottle`] = {["name"] = "weapon_bottle", ["label"] = "Broken Bottle", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_bottle.png", ["unique"] = true, ["useable"] = false, ["description"] = "A broken bottle"},
|
|
[`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_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_heavypistol`] = {["name"] = "weapon_heavypistol", ["label"] = "Heavy Pistol", ["weight"] = 1000, ["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_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_dagger`] = {["name"] = "weapon_dagger", ["label"] = "Dagger", ["weight"] = 1000, ["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_vintagepistol`] = {["name"] = "weapon_vintagepistol", ["label"] = "Vintage Pistol", ["weight"] = 1000, ["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_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_musket`] = {["name"] = "weapon_musket", ["label"] = "Musket", ["weight"] = 1000, ["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"] = 1000, ["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_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_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_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_flaregun`] = {["name"] = "weapon_flaregun", ["label"] = "Flare Gun", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_FLARE", ["image"] = "weapon_flaregun.png", ["unique"] = true, ["useable"] = false, ["description"] = "A handgun for firing signal rockets"},
|
|
[`weapon_garbagebag`] = {["name"] = "weapon_garbagebag", ["label"] = "Garbage Bag", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_garbagebag.png", ["unique"] = true, ["useable"] = false, ["description"] = "A garbage bag"},
|
|
[`weapon_handcuffs`] = {["name"] = "weapon_handcuffs", ["label"] = "Handcuffs", ["weight"] = 1000, ["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_combatpdw`] = {["name"] = "weapon_combatpdw", ["label"] = "Combat PDW", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_combatpdw.png", ["unique"] = true, ["useable"] = false, ["description"] = "A combat version of a handheld lightweight machine gun"},
|
|
[`weapon_marksmanpistol`] = {["name"] = "weapon_marksmanpistol", ["label"] = "Marksman Pistol", ["weight"] = 1000, ["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_knuckle`] = {["name"] = "weapon_knuckle", ["label"] = "Knuckle", ["weight"] = 1000, ["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_hatchet`] = {["name"] = "weapon_hatchet", ["label"] = "Hatchet", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_PISTOL", ["image"] = "weapon_hatchet.png", ["unique"] = true, ["useable"] = false, ["description"] = "A small axe with a short handle for use in one hand"},
|
|
[`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_machete`] = {["name"] = "weapon_machete", ["label"] = "Machete", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_machete.png", ["unique"] = true, ["useable"] = false, ["description"] = "A broad, heavy knife used as a weapon"},
|
|
[`weapon_machinepistol`] = {["name"] = "weapon_machinepistol", ["label"] = "Tec-9", ["weight"] = 1000, ["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_switchblade`] = {["name"] = "weapon_switchblade", ["label"] = "Switchblade", ["weight"] = 1000, ["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_revolver`] = {["name"] = "weapon_revolver", ["label"] = "Revolver", ["weight"] = 1000, ["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_dbshotgun`] = {["name"] = "weapon_dbshotgun", ["label"] = "Double-barrel Shotgun", ["weight"] = 1000, ["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_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_autoshotgun`] = {["name"] = "weapon_autoshotgun", ["label"] = "Auto Shotgun", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SHOTGUN", ["image"] = "weapon_autoshotgun.png", ["unique"] = true, ["useable"] = false, ["description"] = "A shotgun capable of rapid continous fire"},
|
|
[`weapon_battleaxe`] = {["name"] = "weapon_battleaxe", ["label"] = "Battle Axe", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_battleaxe.png", ["unique"] = true, ["useable"] = false, ["description"] = "A large broad-bladed axe used in ancient warfare"},
|
|
[`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_minismg`] = {["name"] = "weapon_minismg", ["label"] = "Mini SMG", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = "AMMO_SMG", ["image"] = "weapon_minismg.png", ["unique"] = true, ["useable"] = false, ["description"] = "A mini handheld lightweight machine gun"},
|
|
[`weapon_pipebomb`] = {["name"] = "weapon_pipebomb", ["label"] = "Pipe bom", ["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_poolcue`] = {["name"] = "weapon_poolcue", ["label"] = "Poolcue", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "weapon_poolcue.png", ["unique"] = true, ["useable"] = false, ["description"] = "A stick used to strike a ball, usually the cue ball (sometimes)"},
|
|
[`weapon_wrench`] = {["name"] = "weapon_wrench", ["label"] = "Wrench", ["weight"] = 1000, ["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_bread`] = {["name"] = "weapon_bread", ["label"] = "Baquette", ["weight"] = 1000, ["type"] = "weapon", ["ammotype"] = nil, ["image"] = "baquette.png", ["unique"] = true, ["useable"] = false, ["description"] = "Bread..?"},
|
|
}
|
|
|
|
-- Gangs
|
|
QBShared.Gangs = {
|
|
["none"] = {
|
|
label = "No Gang"
|
|
},
|
|
["lostmc"] = {
|
|
label = "The Lost MC"
|
|
},
|
|
["ballas"] = {
|
|
label = "Ballas"
|
|
},
|
|
["vagos"] = {
|
|
label = "Vagos"
|
|
},
|
|
["cartel"] = {
|
|
label = "Cartel"
|
|
},
|
|
["familes"] = {
|
|
label = "Families"
|
|
},
|
|
["triads"] = {
|
|
label = "Triads"
|
|
}
|
|
}
|
|
|
|
-- Jobs
|
|
QBShared.Jobs = {
|
|
["unemployed"] = {
|
|
label = "Civilian",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Freelancer",
|
|
payment = 10
|
|
},
|
|
},
|
|
},
|
|
["police"] = {
|
|
label = "Law Enforcement",
|
|
defaultDuty = true,
|
|
bossmenu = vector3(448.4, -973.2, 30.6),
|
|
grades = {
|
|
['0'] = {
|
|
name = "Recruit",
|
|
payment = 50
|
|
},
|
|
['1'] = {
|
|
name = "Officer",
|
|
payment = 75
|
|
},
|
|
['2'] = {
|
|
name = "Sergeant",
|
|
payment = 100
|
|
},
|
|
['3'] = {
|
|
name = "Lieutenant",
|
|
payment = 125
|
|
},
|
|
['4'] = {
|
|
name = "Chief",
|
|
isboss = true,
|
|
payment = 150
|
|
},
|
|
},
|
|
},
|
|
["ambulance"] = {
|
|
label = "EMS",
|
|
defaultDuty = true,
|
|
bossmenu = vector3(270.5, -1363.0, 23.5),
|
|
grades = {
|
|
['0'] = {
|
|
name = "Recruit",
|
|
payment = 50
|
|
},
|
|
['1'] = {
|
|
name = "Paramedic",
|
|
payment = 75
|
|
},
|
|
['2'] = {
|
|
name = "Doctor",
|
|
payment = 100
|
|
},
|
|
['3'] = {
|
|
name = "Surgeon",
|
|
payment = 125
|
|
},
|
|
['4'] = {
|
|
name = "Chief",
|
|
isboss = true,
|
|
payment = 150
|
|
},
|
|
},
|
|
},
|
|
["realestate"] = {
|
|
label = "Real Estate",
|
|
defaultDuty = true,
|
|
bossmenu = vector3(-124.786, -641.486, 167.820),
|
|
grades = {
|
|
['0'] = {
|
|
name = "Recruit",
|
|
payment = 50
|
|
},
|
|
['1'] = {
|
|
name = "House Sales",
|
|
payment = 75
|
|
},
|
|
['2'] = {
|
|
name = "Business Sales",
|
|
payment = 100
|
|
},
|
|
['3'] = {
|
|
name = "Broker",
|
|
payment = 125
|
|
},
|
|
['4'] = {
|
|
name = "Manager",
|
|
isboss = true,
|
|
payment = 150
|
|
},
|
|
},
|
|
},
|
|
["taxi"] = {
|
|
label = "Taxi",
|
|
defaultDuty = true,
|
|
bossmenu = vector3(903.32, -170.55, 74.0),
|
|
grades = {
|
|
['0'] = {
|
|
name = "Recruit",
|
|
payment = 50
|
|
},
|
|
['1'] = {
|
|
name = "Driver",
|
|
payment = 75
|
|
},
|
|
['2'] = {
|
|
name = "Event Driver",
|
|
payment = 100
|
|
},
|
|
['3'] = {
|
|
name = "Sales",
|
|
payment = 125
|
|
},
|
|
['4'] = {
|
|
name = "Manager",
|
|
isboss = true,
|
|
payment = 150
|
|
},
|
|
},
|
|
},
|
|
["cardealer"] = {
|
|
label = "Vehicle Dealer",
|
|
defaultDuty = true,
|
|
bossmenu = vector3(-32.0, -1114.2, 25.4),
|
|
grades = {
|
|
['0'] = {
|
|
name = "Recruit",
|
|
payment = 50
|
|
},
|
|
['1'] = {
|
|
name = "Showroom Sales",
|
|
payment = 75
|
|
},
|
|
['2'] = {
|
|
name = "Business Sales",
|
|
payment = 100
|
|
},
|
|
['3'] = {
|
|
name = "Finance",
|
|
payment = 125
|
|
},
|
|
['4'] = {
|
|
name = "Manager",
|
|
isboss = true,
|
|
payment = 150
|
|
},
|
|
},
|
|
},
|
|
["mechanic"] = {
|
|
label = "Mechanic",
|
|
defaultDuty = true,
|
|
bossmenu = vector3(-342.291, -133.370, 39.009),
|
|
grades = {
|
|
['0'] = {
|
|
name = "Recruit",
|
|
payment = 50
|
|
},
|
|
['1'] = {
|
|
name = "Novice",
|
|
payment = 75
|
|
},
|
|
['2'] = {
|
|
name = "Experienced",
|
|
payment = 100
|
|
},
|
|
['3'] = {
|
|
name = "Advanced",
|
|
payment = 125
|
|
},
|
|
['4'] = {
|
|
name = "Manager",
|
|
isboss = true,
|
|
payment = 150
|
|
},
|
|
},
|
|
},
|
|
["judge"] = {
|
|
label = "Honorary",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Judge",
|
|
payment = 100
|
|
},
|
|
},
|
|
},
|
|
["lawyer"] = {
|
|
label = "Law Firm",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Associate",
|
|
payment = 50
|
|
},
|
|
},
|
|
},
|
|
["reporter"] = {
|
|
label = "Reporter",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Journalist",
|
|
payment = 50
|
|
},
|
|
},
|
|
},
|
|
["trucker"] = {
|
|
label = "Trucker",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Driver",
|
|
payment = 50
|
|
},
|
|
},
|
|
},
|
|
["tow"] = {
|
|
label = "Towing",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Driver",
|
|
payment = 50
|
|
},
|
|
},
|
|
},
|
|
["garbage"] = {
|
|
label = "Garbage",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Collector",
|
|
payment = 50
|
|
},
|
|
},
|
|
},
|
|
["vineyard"] = {
|
|
label = "Vineyard",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Picker",
|
|
payment = 50
|
|
},
|
|
},
|
|
},
|
|
["hotdog"] = {
|
|
label = "Hotdog",
|
|
defaultDuty = true,
|
|
grades = {
|
|
['0'] = {
|
|
name = "Sales",
|
|
payment = 50
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
-- Vehicles
|
|
QBShared.Vehicles = {
|
|
["adder"] = {
|
|
["name"] = "Adder",
|
|
["brand"] = "Truffade",
|
|
["model"] = "adder",
|
|
["price"] = 900000,
|
|
["category"] = "super",
|
|
["hash"] = "-1216765807",
|
|
["shop"] = "pdm",
|
|
},
|
|
["alpha"] = {
|
|
["name"] = "Alpha",
|
|
["brand"] = "Albany",
|
|
["model"] = "alpha",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = "767087018",
|
|
["shop"] = "pdm",
|
|
},
|
|
["ardent"] = {
|
|
["name"] = "Ardent",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "ardent",
|
|
["price"] = 11500000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = GetHashKey("ardent"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["asea"] = {
|
|
["name"] = "Asea",
|
|
["brand"] = "Declasse",
|
|
["model"] = "asea",
|
|
["price"] = 5500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1809822327",
|
|
["shop"] = "pdm",
|
|
},
|
|
["autarch"] = {
|
|
["name"] = "Autarch",
|
|
["brand"] = "Överflöd",
|
|
["model"] = "autarch",
|
|
["price"] = 1955000,
|
|
["category"] = "super",
|
|
["hash"] = "-313185164",
|
|
["shop"] = "pdm",
|
|
},
|
|
["avarus"] = {
|
|
["name"] = "Avarus",
|
|
["brand"] = "LCC",
|
|
["model"] = "avarus",
|
|
["price"] = 6500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-2115793025",
|
|
["shop"] = "pdm",
|
|
},
|
|
["bagger"] = {
|
|
["name"] = "Bagger",
|
|
["brand"] = "WMC",
|
|
["model"] = "bagger",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-2140431165",
|
|
["shop"] = "pdm",
|
|
},
|
|
["baller2"] = {
|
|
["name"] = "Baller",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller2",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = "142944341",
|
|
["shop"] = "pdm",
|
|
},
|
|
["baller3"] = {
|
|
["name"] = "Baller LE",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller3",
|
|
["price"] = 60000,
|
|
["category"] = "suvs",
|
|
["hash"] = "1878062887",
|
|
["shop"] = "pdm",
|
|
},
|
|
["banshee"] = {
|
|
["name"] = "Banshee",
|
|
["brand"] = "Bravado",
|
|
["model"] = "banshee",
|
|
["price"] = 70000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1041692462",
|
|
["shop"] = "pdm",
|
|
},
|
|
["banshee2"] = {
|
|
["name"] = "Banshee 900R",
|
|
["brand"] = "Bravado",
|
|
["model"] = "banshee2",
|
|
["price"] = 255000,
|
|
["category"] = "super",
|
|
["hash"] = "633712403",
|
|
["shop"] = "pdm",
|
|
},
|
|
["bati"] = {
|
|
["name"] = "Bati 801",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "bati",
|
|
["price"] = 12000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-114291515",
|
|
["shop"] = "pdm",
|
|
},
|
|
["bestiagts"] = {
|
|
["name"] = "Bestia GTS",
|
|
["brand"] = "Grotti",
|
|
["model"] = "bestiagts",
|
|
["price"] = 55000,
|
|
["category"] = "sports",
|
|
["hash"] = "1274868363",
|
|
["shop"] = "pdm",
|
|
},
|
|
["bfinjection"] = {
|
|
["name"] = 'Bf Injection',
|
|
["brand"] = "Annis",
|
|
["price"] = 16000,
|
|
["category"] = "offroad",
|
|
["model"] = "bfinjection",
|
|
["hash"] = GetHashKey("bfinjection"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["bifta"] = {
|
|
["name"] = 'Bifta',
|
|
["brand"] = "Annis",
|
|
["price"] = 12000,
|
|
["category"] = "offroad",
|
|
["model"] = "bifta",
|
|
["hash"] = GetHashKey("bifta"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["bison"] = {
|
|
["name"] = "Bison",
|
|
["brand"] = "Bravado",
|
|
["model"] = "bison",
|
|
["price"] = 45000,
|
|
["category"] = "vans",
|
|
["hash"] = "-16948145",
|
|
["shop"] = "pdm",
|
|
},
|
|
["bjxl"] = {
|
|
["name"] = "BeeJay XL",
|
|
["brand"] = "Karin",
|
|
["model"] = "bjxl",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = "850565707",
|
|
["shop"] = "pdm",
|
|
},
|
|
["blade"] = {
|
|
["name"] = "Blade",
|
|
["brand"] = "Vapid",
|
|
["model"] = "blade",
|
|
["price"] = 15000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1205801634",
|
|
["shop"] = "pdm",
|
|
},
|
|
["blazer"] = {
|
|
["name"] = 'Blazer',
|
|
["price"] = 6500,
|
|
["category"] = "offroad",
|
|
["model"] = "blazer",
|
|
["hash"] = GetHashKey("blazer"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["blazer4"] = {
|
|
["name"] = 'Blazer Sport',
|
|
["brand"] = "Annis",
|
|
["price"] = 8500,
|
|
["category"] = "offroad",
|
|
["model"] = "blazer4",
|
|
["hash"] = GetHashKey("blazer4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["blista"] = {
|
|
["name"] = "Blista",
|
|
["brand"] = "Dinka",
|
|
["model"] = "blista",
|
|
["price"] = 8000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-344943009",
|
|
["shop"] = "pdm",
|
|
},
|
|
["blista2"] = {
|
|
["name"] = "Blista Compact",
|
|
["brand"] = "Dinka",
|
|
["model"] = "blista2",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = "1039032026",
|
|
["shop"] = "pdm",
|
|
},
|
|
["bobcatxl"] = {
|
|
["name"] = "Bobcat XL Open",
|
|
["brand"] = "Vapid",
|
|
["model"] = "bobcatxl",
|
|
["price"] = 23000,
|
|
["category"] = "vans",
|
|
["hash"] = "1069929536",
|
|
["shop"] = "pdm",
|
|
},
|
|
["brawler"] = {
|
|
["name"] = 'Brawler',
|
|
["brand"] = "Annis",
|
|
["price"] = 45000,
|
|
["category"] = "offroad",
|
|
["model"] = "brawler",
|
|
["hash"] = GetHashKey("brawler"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["brioso"] = {
|
|
["name"] = "Brioso R/A",
|
|
["brand"] = "Grotti",
|
|
["model"] = "brioso",
|
|
["price"] = 14500,
|
|
["category"] = "compacts",
|
|
["hash"] = "1549126457",
|
|
["shop"] = "pdm",
|
|
},
|
|
["btype"] = {
|
|
["name"] = "Roosevelt",
|
|
["brand"] = "Albany",
|
|
["model"] = "btype",
|
|
["price"] = 325000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "117401876",
|
|
["shop"] = "pdm",
|
|
},
|
|
["btype2"] = {
|
|
["name"] = "Franken Stange",
|
|
["brand"] = "Albany",
|
|
["model"] = "btype2",
|
|
["price"] = 350000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-831834716",
|
|
["shop"] = "pdm",
|
|
},
|
|
["btype3"] = {
|
|
["name"] = "Roosevelt Valor",
|
|
["brand"] = "Albany",
|
|
["model"] = "btype3",
|
|
["price"] = 375000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-602287871",
|
|
["shop"] = "pdm",
|
|
},
|
|
["buccaneer"] = {
|
|
["name"] = "Buccaneer",
|
|
["brand"] = "Albany",
|
|
["model"] = "buccaneer",
|
|
["price"] = 19500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-682211828",
|
|
["shop"] = "pdm",
|
|
},
|
|
["buccaneer2"] = {
|
|
["name"] = "Buccaneer Rider",
|
|
["brand"] = "Albany",
|
|
["model"] = "buccaneer2",
|
|
["price"] = 22500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1013450936",
|
|
["shop"] = "pdm",
|
|
},
|
|
["buffalo"] = {
|
|
["name"] = "Buffalo",
|
|
["brand"] = "Bravado",
|
|
["model"] = "buffalo",
|
|
["price"] = 32000,
|
|
["category"] = "sports",
|
|
["hash"] = "-304802106",
|
|
["shop"] = "pdm",
|
|
},
|
|
["buffalo2"] = {
|
|
["name"] = "Buffalo S",
|
|
["brand"] = "Bravado",
|
|
["model"] = "buffalo2",
|
|
["price"] = 39500,
|
|
["category"] = "sports",
|
|
["hash"] = "736902334",
|
|
["shop"] = "pdm",
|
|
},
|
|
["bullet"] = {
|
|
["name"] = "Bullet",
|
|
["brand"] = "Vapid",
|
|
["model"] = "bullet",
|
|
["price"] = 190000,
|
|
["category"] = "super",
|
|
["hash"] = "-1696146015",
|
|
["shop"] = "pdm",
|
|
},
|
|
["burrito3"] = {
|
|
["name"] = "Burrito",
|
|
["brand"] = "Declasse",
|
|
["model"] = "burrito3",
|
|
["price"] = 38500,
|
|
["category"] = "vans",
|
|
["hash"] = "-1743316013",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gburrito2"] = {
|
|
["name"] = "Burrito Custom",
|
|
["brand"] = "Declasse",
|
|
["model"] = "gburrito2",
|
|
["price"] = 65000,
|
|
["category"] = "vans",
|
|
["hash"] = "296357396",
|
|
["shop"] = "pdm",
|
|
},
|
|
["carbonizzare"] = {
|
|
["name"] = "Carbonizzare",
|
|
["brand"] = "Grotti",
|
|
["model"] = "carbonizzare",
|
|
["price"] = 219000,
|
|
["category"] = "sports",
|
|
["hash"] = "2072687711",
|
|
["shop"] = "pdm",
|
|
},
|
|
["carbonrs"] = {
|
|
["name"] = "Carbon RS",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "carbonrs",
|
|
["price"] = 14500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "11251904",
|
|
["shop"] = "pdm",
|
|
},
|
|
["casco"] = {
|
|
["name"] = "Casco",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "casco",
|
|
["price"] = 102000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "941800958",
|
|
["shop"] = "pdm",
|
|
},
|
|
["cavalcade2"] = {
|
|
["name"] = "Cavalcade",
|
|
["brand"] = "Albany",
|
|
["model"] = "cavalcade2",
|
|
["price"] = 45000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-789894171",
|
|
["shop"] = "pdm",
|
|
},
|
|
["cheetah"] = {
|
|
["name"] = "Cheetah",
|
|
["brand"] = "Grotti",
|
|
["model"] = "cheetah",
|
|
["price"] = 395000,
|
|
["category"] = "super",
|
|
["hash"] = "-1311154784",
|
|
["shop"] = "pdm",
|
|
},
|
|
["cheetah2"] = {
|
|
["name"] = "Cheetah Classic",
|
|
["brand"] = "Grotti",
|
|
["model"] = "cheetah2",
|
|
["price"] = 220000,
|
|
["category"] = "sports",
|
|
["hash"] = "223240013",
|
|
["shop"] = "pdm",
|
|
},
|
|
["chimera"] = {
|
|
["name"] = "Chimera",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "chimera",
|
|
["price"] = 15000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "6774487",
|
|
["shop"] = "pdm",
|
|
},
|
|
["chino"] = {
|
|
["name"] = "Chino",
|
|
["brand"] = "Vapid",
|
|
["model"] = "chino",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = "349605904",
|
|
["shop"] = "pdm",
|
|
},
|
|
["chino2"] = {
|
|
["name"] = "Chino Luxe",
|
|
["brand"] = "Vapid",
|
|
["model"] = "chino2",
|
|
["price"] = 35000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1361687965",
|
|
["shop"] = "pdm",
|
|
},
|
|
["cogcabrio"] = {
|
|
["name"] = "Cognoscenti Cabrio",
|
|
["brand"] = "Enus",
|
|
["model"] = "cogcabrio",
|
|
["price"] = 45500,
|
|
["category"] = "coupes",
|
|
["hash"] = "330661258",
|
|
["shop"] = "pdm",
|
|
},
|
|
["cognoscenti"] = {
|
|
["name"] = "Cognoscenti",
|
|
["brand"] = "Enus",
|
|
["model"] = "cognoscenti",
|
|
["price"] = 40000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-2030171296",
|
|
["shop"] = "pdm",
|
|
},
|
|
["comet2"] = {
|
|
["name"] = "Comet",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet2",
|
|
["price"] = 142000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1045541610",
|
|
["shop"] = "pdm",
|
|
},
|
|
["comet3"] = {
|
|
["name"] = "Comet Retro Custom",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet3",
|
|
["price"] = 125000,
|
|
["category"] = "sports",
|
|
["hash"] = "-2022483795",
|
|
["shop"] = "pdm",
|
|
},
|
|
["comet5"] = {
|
|
["name"] = "Comet SR",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet5",
|
|
["price"] = 252000,
|
|
["category"] = "sports",
|
|
["hash"] = "661493923",
|
|
["shop"] = "pdm",
|
|
},
|
|
["coquette"] = {
|
|
["name"] = "Coquette",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette",
|
|
["price"] = 97000,
|
|
["category"] = "sports",
|
|
["hash"] = "108773431",
|
|
["shop"] = "pdm",
|
|
},
|
|
["coquette2"] = {
|
|
["name"] = "Coquette Classic",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette2",
|
|
["price"] = 125000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "1011753235",
|
|
["shop"] = "pdm",
|
|
},
|
|
["coquette3"] = {
|
|
["name"] = "Coquette BlackFin",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette3",
|
|
["price"] = 45000,
|
|
["category"] = "muscle",
|
|
["hash"] = "784565758",
|
|
["shop"] = "pdm",
|
|
},
|
|
["cyclone"] = {
|
|
["name"] = "Cyclone",
|
|
["brand"] = "Coil",
|
|
["model"] = "cyclone",
|
|
["price"] = 1200000,
|
|
["category"] = "super",
|
|
["hash"] = "1392481335",
|
|
["shop"] = "pdm",
|
|
},
|
|
["daemon"] = {
|
|
["name"] = "Daemon",
|
|
["brand"] = "WMC",
|
|
["model"] = "daemon",
|
|
["price"] = 12500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "2006142190",
|
|
["shop"] = "pdm",
|
|
},
|
|
["defiler"] = {
|
|
["name"] = "Defiler",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "defiler",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "822018448",
|
|
["shop"] = "pdm",
|
|
},
|
|
["dilettante"] = {
|
|
["name"] = "Dilettante",
|
|
["brand"] = "Karin",
|
|
["model"] = "dilettante",
|
|
["price"] = 13000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-1130810103",
|
|
["shop"] = "pdm",
|
|
},
|
|
["dominator"] = {
|
|
["name"] = "Dominator",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator",
|
|
["price"] = 53000,
|
|
["category"] = "muscle",
|
|
["hash"] = "80636076",
|
|
["shop"] = "pdm",
|
|
},
|
|
["dubsta2"] = {
|
|
["name"] = "Dubsta Luxuary",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "dubsta2",
|
|
["price"] = 165000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-394074634",
|
|
["shop"] = "pdm",
|
|
},
|
|
["dubsta3"] = {
|
|
["name"] = 'Bubsta 6x6',
|
|
["brand"] = "Annis",
|
|
["price"] = 120000,
|
|
["category"] = "offroad",
|
|
["model"] = "dubsta3",
|
|
["hash"] = GetHashKey("dubsta3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dukes"] = {
|
|
["name"] = "Dukes",
|
|
["brand"] = "Imponte",
|
|
["model"] = "dukes",
|
|
["price"] = 15000,
|
|
["category"] = "muscle",
|
|
["hash"] = "723973206",
|
|
["shop"] = "pdm",
|
|
},
|
|
["dune"] = {
|
|
["name"] = 'Dune Buggy',
|
|
["brand"] = "Annis",
|
|
["price"] = 8000,
|
|
["category"] = "offroad",
|
|
["model"] = "dune",
|
|
["hash"] = GetHashKey("dune"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["elegy"] = {
|
|
["name"] = "Elegy Retro Custom",
|
|
["brand"] = "Annis",
|
|
["model"] = "elegy",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = "196747873 ",
|
|
["shop"] = "pdm",
|
|
},
|
|
["elegy2"] = {
|
|
["name"] = "Elegy RH8",
|
|
["brand"] = "Annis",
|
|
["model"] = "elegy2",
|
|
["price"] = 68500,
|
|
["category"] = "sports",
|
|
["hash"] = "-566387422",
|
|
["shop"] = "pdm",
|
|
},
|
|
["ellie"] = {
|
|
["name"] = "Ellie",
|
|
["brand"] = "Vapid",
|
|
["model"] = "ellie",
|
|
["price"] = 50000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1267543371",
|
|
["shop"] = "pdm",
|
|
},
|
|
["emperor"] = {
|
|
["name"] = "Emperor",
|
|
["brand"] = "Albany",
|
|
["model"] = "emperor",
|
|
["price"] = 14500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-685276541",
|
|
["shop"] = "pdm",
|
|
},
|
|
["entity2"] = {
|
|
["name"] = "Entity XXR",
|
|
["brand"] = "Överflöd",
|
|
["model"] = "entity2",
|
|
["price"] = 1532000,
|
|
["category"] = "super",
|
|
["hash"] = "-2120700196",
|
|
["shop"] = "pdm",
|
|
},
|
|
["entityxf"] = {
|
|
["name"] = "Entity XF",
|
|
["brand"] = "Överflöd",
|
|
["model"] = "entityxf",
|
|
["price"] = 825000,
|
|
["category"] = "super",
|
|
["hash"] = "-1291952903",
|
|
["shop"] = "pdm",
|
|
},
|
|
["esskey"] = {
|
|
["name"] = "Esskey",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "esskey",
|
|
["price"] = 6000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "2035069708",
|
|
["shop"] = "pdm",
|
|
},
|
|
["exemplar"] = {
|
|
["name"] = "Exemplar",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "exemplar",
|
|
["price"] = 65000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-5153954",
|
|
["shop"] = "pdm",
|
|
},
|
|
["f620"] = {
|
|
["name"] = "F620",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "f620",
|
|
["price"] = 37500,
|
|
["category"] = "coupes",
|
|
["hash"] = "-591610296",
|
|
["shop"] = "pdm",
|
|
},
|
|
["faction"] = {
|
|
["name"] = "Faction",
|
|
["brand"] = "Willard",
|
|
["model"] = "faction",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-2119578145",
|
|
["shop"] = "pdm",
|
|
},
|
|
["faction2"] = {
|
|
["name"] = "Faction Rider",
|
|
["brand"] = "Willard",
|
|
["model"] = "faction2",
|
|
["price"] = 22500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1790546981",
|
|
["shop"] = "pdm",
|
|
},
|
|
["fagaloa"] = {
|
|
["name"] = "Fagaloa",
|
|
["brand"] = "Vulcar",
|
|
["model"] = "fagaloa",
|
|
["price"] = 35000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = GetHashKey("fagaloa"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["faggio"] = {
|
|
["name"] = "Faggio Sport",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "faggio",
|
|
["price"] = 750,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "55628203",
|
|
["shop"] = "pdm",
|
|
},
|
|
["faggio3"] = {
|
|
["name"] = "Faggio Mod",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "faggio3",
|
|
["price"] = 900,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-1289178744",
|
|
["shop"] = "pdm",
|
|
},
|
|
["felon"] = {
|
|
["name"] = "Felon",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "felon",
|
|
["price"] = 31000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-391594584",
|
|
["shop"] = "pdm",
|
|
},
|
|
["felon2"] = {
|
|
["name"] = "Felon GT",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "felon2",
|
|
["price"] = 37000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-89291282",
|
|
["shop"] = "pdm",
|
|
},
|
|
["feltzer2"] = {
|
|
["name"] = "Feltzer",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "feltzer2",
|
|
["price"] = 83500,
|
|
["category"] = "sports",
|
|
["hash"] = "-1995326987",
|
|
["shop"] = "pdm",
|
|
},
|
|
["feltzer3"] = {
|
|
["name"] = "Stirling GT",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "feltzer3",
|
|
["price"] = 195000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-1566741232",
|
|
["shop"] = "pdm",
|
|
},
|
|
["flashgt"] = {
|
|
["name"] = "Flash GT",
|
|
["brand"] = "Vapid",
|
|
["model"] = "flashgt",
|
|
["price"] = 111000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1259134696",
|
|
["shop"] = "pdm",
|
|
},
|
|
["fmj"] = {
|
|
["name"] = "FMJ",
|
|
["brand"] = "Vapid",
|
|
["model"] = "fmj",
|
|
["price"] = 335000,
|
|
["category"] = "super",
|
|
["hash"] = "1426219628",
|
|
["shop"] = "pdm",
|
|
},
|
|
["fq2"] = {
|
|
["name"] = "FQ2",
|
|
["brand"] = "Fathom",
|
|
["model"] = "fq2",
|
|
["price"] = 38000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1137532101",
|
|
["shop"] = "pdm",
|
|
},
|
|
["fugitive"] = {
|
|
["name"] = "Fugitive",
|
|
["brand"] = "Cheval",
|
|
["model"] = "fugitive",
|
|
["price"] = 22500,
|
|
["category"] = "sedans",
|
|
["hash"] = "1909141499",
|
|
["shop"] = "pdm",
|
|
},
|
|
["furoregt"] = {
|
|
["name"] = "Furore GT",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "furoregt",
|
|
["price"] = 115000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1089039904",
|
|
["shop"] = "pdm",
|
|
},
|
|
["futo"] = {
|
|
["name"] = "Futo",
|
|
["brand"] = "Karin",
|
|
["model"] = "futo",
|
|
["price"] = 20000,
|
|
["category"] = "coupes",
|
|
["hash"] = "2016857647",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gauntlet"] = {
|
|
["name"] = "Gauntlet",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 39500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
["glendale"] = {
|
|
["name"] = "Glendale",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "glendale",
|
|
["price"] = 11500,
|
|
["category"] = "sedans",
|
|
["hash"] = "75131841",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gp1"] = {
|
|
["name"] = "GP1",
|
|
["brand"] = "Progen",
|
|
["model"] = "gp1",
|
|
["price"] = 462000,
|
|
["category"] = "super",
|
|
["hash"] = "1234311532",
|
|
["shop"] = "pdm",
|
|
},
|
|
["granger"] = {
|
|
["name"] = "Granger",
|
|
["brand"] = "Declasse",
|
|
["model"] = "granger",
|
|
["price"] = 43500,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1775728740",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gresley"] = {
|
|
["name"] = "Gresley",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gresley",
|
|
["price"] = 47000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1543762099",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gt500"] = {
|
|
["name"] = "GT500",
|
|
["brand"] = "Grotti",
|
|
["model"] = "gt500",
|
|
["price"] = 255000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-2079788230",
|
|
["shop"] = "pdm",
|
|
},
|
|
["guardian"] = {
|
|
["name"] = 'Guardian',
|
|
["brand"] = "Annis",
|
|
["price"] = 45000,
|
|
["category"] = "offroad",
|
|
["model"] = "guardian",
|
|
["hash"] = GetHashKey("guardian"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["hakuchou"] = {
|
|
["name"] = "Hakuchou",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "hakuchou",
|
|
["price"] = 16000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "1265391242",
|
|
["shop"] = "pdm",
|
|
},
|
|
["hexer"] = {
|
|
["name"] = "Hexer",
|
|
["brand"] = "LCC",
|
|
["model"] = "hexer",
|
|
["price"] = 7500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "301427732",
|
|
["shop"] = "pdm",
|
|
},
|
|
["hotknife"] = {
|
|
["name"] = "Hotknife",
|
|
["brand"] = "Vapid",
|
|
["model"] = "hotknife",
|
|
["price"] = 95000,
|
|
["category"] = "muscle",
|
|
["hash"] = "37348240",
|
|
["shop"] = "pdm",
|
|
},
|
|
["huntley"] = {
|
|
["name"] = "Huntley S",
|
|
["brand"] = "Enus",
|
|
["model"] = "huntley",
|
|
["price"] = 85000,
|
|
["category"] = "suvs",
|
|
["hash"] = "486987393",
|
|
["shop"] = "pdm",
|
|
},
|
|
["hustler"] = {
|
|
["name"] = "Hustler",
|
|
["brand"] = "Vapid",
|
|
["model"] = "hustler",
|
|
["price"] = 75500,
|
|
["category"] = "muscle",
|
|
["hash"] = "600450546",
|
|
["shop"] = "pdm",
|
|
},
|
|
["infernus"] = {
|
|
["name"] = "Infernus",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "infernus",
|
|
["price"] = 285000,
|
|
["category"] = "super",
|
|
["hash"] = "418536135",
|
|
["shop"] = "pdm",
|
|
},
|
|
["infernus2"] = {
|
|
["name"] = "Infernus Classic",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "infernus2",
|
|
["price"] = 200000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-1405937764",
|
|
["shop"] = "pdm",
|
|
},
|
|
["intruder"] = {
|
|
["name"] = "Intruder",
|
|
["brand"] = "Karin",
|
|
["model"] = "intruder",
|
|
["price"] = 15000,
|
|
["category"] = "sedans",
|
|
["hash"] = "886934177",
|
|
["shop"] = "pdm",
|
|
},
|
|
["issi2"] = {
|
|
["name"] = "Issi",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi2",
|
|
["price"] = 12000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-1177863319",
|
|
["shop"] = "pdm",
|
|
},
|
|
["issi3"] = {
|
|
["name"] = "Issi Classic",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi3",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = "931280609",
|
|
["shop"] = "pdm",
|
|
},
|
|
["italigtb"] = {
|
|
["name"] = "Itali GTB",
|
|
["brand"] = "Progen",
|
|
["model"] = "italigtb",
|
|
["price"] = 1200000,
|
|
["category"] = "super",
|
|
["hash"] = "-482719877",
|
|
["shop"] = "pdm",
|
|
},
|
|
["jackal"] = {
|
|
["name"] = "Jackal",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "jackal",
|
|
["price"] = 29000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-624529134",
|
|
["shop"] = "pdm",
|
|
},
|
|
["jester"] = {
|
|
["name"] = "Jester",
|
|
["brand"] = "Dinka",
|
|
["model"] = "jester",
|
|
["price"] = 265000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1297672541",
|
|
["shop"] = "pdm",
|
|
},
|
|
["jester3"] = {
|
|
["name"] = "Jester Classic",
|
|
["brand"] = "Dinka",
|
|
["model"] = "jester3",
|
|
["price"] = 70000,
|
|
["category"] = "sports",
|
|
["hash"] = "-214906006",
|
|
["shop"] = "pdm",
|
|
},
|
|
["khamelion"] = {
|
|
["name"] = "Khamelion",
|
|
["brand"] = "Hijak",
|
|
["model"] = "khamelion",
|
|
["price"] = 102000,
|
|
["category"] = "sports",
|
|
["hash"] = "544021352",
|
|
["shop"] = "pdm",
|
|
},
|
|
["kuruma"] = {
|
|
["name"] = "Kuruma",
|
|
["brand"] = "Karin",
|
|
["model"] = "kuruma",
|
|
["price"] = 59500,
|
|
["category"] = "sports",
|
|
["hash"] = "-1372848492",
|
|
["shop"] = "pdm",
|
|
},
|
|
["landstalker"] = {
|
|
["name"] = "Landstalker",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "landstalker",
|
|
["price"] = 27000,
|
|
["category"] = "suvs",
|
|
["hash"] = "1269098716",
|
|
["shop"] = "pdm",
|
|
},
|
|
["lynx"] = {
|
|
["name"] = "Lynx",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "lynx",
|
|
["price"] = 68500,
|
|
["category"] = "sports",
|
|
["hash"] = "482197771",
|
|
["shop"] = "pdm",
|
|
},
|
|
["mamba"] = {
|
|
["name"] = "Mamba",
|
|
["brand"] = "Declasse",
|
|
["model"] = "mamba",
|
|
["price"] = 86000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-1660945322",
|
|
["shop"] = "pdm",
|
|
},
|
|
["massacro"] = {
|
|
["name"] = "Massacro",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "massacro",
|
|
["price"] = 165000,
|
|
["category"] = "sports",
|
|
["hash"] = "-142942670",
|
|
["shop"] = "pdm",
|
|
},
|
|
["monroe"] = {
|
|
["name"] = "Monroe",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "monroe",
|
|
["price"] = 98500,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-433375717",
|
|
["shop"] = "pdm",
|
|
},
|
|
["moonbeam"] = {
|
|
["name"] = "Moonbeam",
|
|
["brand"] = "Declasse",
|
|
["model"] = "moonbeam",
|
|
["price"] = 29500,
|
|
["category"] = "vans",
|
|
["hash"] = "525509695",
|
|
["shop"] = "pdm",
|
|
},
|
|
["nemesis"] = {
|
|
["name"] = "Nemesis",
|
|
["brand"] = "Principe",
|
|
["model"] = "nemesis",
|
|
["price"] = 12000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-634879114",
|
|
["shop"] = "pdm",
|
|
},
|
|
["neon"] = {
|
|
["name"] = "Neon",
|
|
["brand"] = "Pfister",
|
|
["model"] = "neon",
|
|
["price"] = 185000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1848994066",
|
|
["shop"] = "pdm",
|
|
},
|
|
["nero"] = {
|
|
["name"] = "Nero",
|
|
["brand"] = "Truffade",
|
|
["model"] = "nero",
|
|
["price"] = 2352000,
|
|
["category"] = "super",
|
|
["hash"] = "1034187331",
|
|
["shop"] = "pdm",
|
|
},
|
|
["nightblade"] = {
|
|
["name"] = "Nightblade",
|
|
["brand"] = "WMC",
|
|
["model"] = "nightblade",
|
|
["price"] = 14500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-1606187161",
|
|
["shop"] = "pdm",
|
|
},
|
|
["nightshade"] = {
|
|
["name"] = "Nightshade",
|
|
["brand"] = "Imponte",
|
|
["model"] = "nightshade",
|
|
["price"] = 84000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1943285540",
|
|
["shop"] = "pdm",
|
|
},
|
|
["ninef"] = {
|
|
["name"] = "9F",
|
|
["brand"] = "Obey",
|
|
["model"] = "ninef",
|
|
["price"] = 135000,
|
|
["category"] = "sports",
|
|
["hash"] = "1032823388",
|
|
["shop"] = "pdm",
|
|
},
|
|
["ninef2"] = {
|
|
["name"] = "9F Cabrio",
|
|
["brand"] = "Obey",
|
|
["model"] = "ninef2",
|
|
["price"] = 142000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1461482751",
|
|
["shop"] = "pdm",
|
|
},
|
|
["omnis"] = {
|
|
["name"] = "Omnis",
|
|
["brand"] = "Wow",
|
|
["model"] = "omnis",
|
|
["price"] = 120000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("omnis"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["oracle"] = {
|
|
["name"] = "Oracle",
|
|
["brand"] = "Ubermacht",
|
|
["model"] = "oracle",
|
|
["price"] = 25000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("oracle"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["oracle2"] = {
|
|
["name"] = "Oracle XS",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "oracle2",
|
|
["price"] = 28000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-511601230",
|
|
["shop"] = "pdm",
|
|
},
|
|
["osiris"] = {
|
|
["name"] = "Osiris",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "osiris",
|
|
["price"] = 1400000,
|
|
["category"] = "super",
|
|
["hash"] = "1987142870",
|
|
["shop"] = "pdm",
|
|
},
|
|
["panto"] = {
|
|
["name"] = "Panto",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "panto",
|
|
["price"] = 8500,
|
|
["category"] = "compacts",
|
|
["hash"] = "-431692672",
|
|
["shop"] = "pdm",
|
|
},
|
|
["pariah"] = {
|
|
["name"] = "Pariah",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "pariah",
|
|
["price"] = 395000,
|
|
["category"] = "sports",
|
|
["hash"] = "867799010",
|
|
["shop"] = "pdm",
|
|
},
|
|
["patriot"] = {
|
|
["name"] = "Patriot",
|
|
["brand"] = "Mammoth",
|
|
["model"] = "patriot",
|
|
["price"] = 32000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-808457413",
|
|
["shop"] = "pdm",
|
|
},
|
|
["pcj"] = {
|
|
["name"] = "PCJ-600",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "pcj",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-909201658",
|
|
["shop"] = "pdm",
|
|
},
|
|
["penetrator"] = {
|
|
["name"] = "Penetrator",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "penetrator",
|
|
["price"] = 567000,
|
|
["category"] = "super",
|
|
["hash"] = "-1758137366",
|
|
["shop"] = "pdm",
|
|
},
|
|
["pfister811"] = {
|
|
["name"] = "811",
|
|
["brand"] = "Pfister",
|
|
["model"] = "pfister811",
|
|
["price"] = 583000,
|
|
["category"] = "super",
|
|
["hash"] = "-1829802492",
|
|
["shop"] = "pdm",
|
|
},
|
|
["phoenix"] = {
|
|
["name"] = "Phoenix",
|
|
["brand"] = "Imponte",
|
|
["model"] = "phoenix",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-2095439403",
|
|
["shop"] = "pdm",
|
|
},
|
|
["picador"] = {
|
|
["name"] = "Picador",
|
|
["brand"] = "Cheval",
|
|
["model"] = "picador",
|
|
["price"] = 18000,
|
|
["category"] = "muscle",
|
|
["hash"] = "1507916787",
|
|
["shop"] = "pdm",
|
|
},
|
|
["pigalle"] = {
|
|
["name"] = "Pigalle",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "pigalle",
|
|
["price"] = 135000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "1078682497",
|
|
["shop"] = "pdm",
|
|
},
|
|
["prairie"] = {
|
|
["name"] = "Prairie",
|
|
["brand"] = "Bollokan",
|
|
["model"] = "prairie",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-1450650718",
|
|
["shop"] = "pdm",
|
|
},
|
|
["premier"] = {
|
|
["name"] = "Premier",
|
|
["brand"] = "Declasse",
|
|
["model"] = "premier",
|
|
["price"] = 16500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1883869285",
|
|
["shop"] = "pdm",
|
|
},
|
|
["primo2"] = {
|
|
["name"] = "Primo Custom",
|
|
["brand"] = "Albany",
|
|
["model"] = "primo2",
|
|
["price"] = 14500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-2040426790",
|
|
["shop"] = "pdm",
|
|
},
|
|
["prototipo"] = {
|
|
["name"] = "X80 Proto",
|
|
["brand"] = "Grotti",
|
|
["model"] = "prototipo",
|
|
["price"] = 1430000,
|
|
["category"] = "super",
|
|
["hash"] = "2123327359",
|
|
["shop"] = "pdm",
|
|
},
|
|
["radi"] = {
|
|
["name"] = "Radius",
|
|
["brand"] = "Vapid",
|
|
["model"] = "radi",
|
|
["price"] = 24000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1651067813",
|
|
["shop"] = "pdm",
|
|
},
|
|
["rapidgt"] = {
|
|
["name"] = "Rapid GT",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "rapidgt",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1934452204",
|
|
["shop"] = "pdm",
|
|
},
|
|
["rapidgt2"] = {
|
|
["name"] = "Rapid GT Convertible",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "rapidgt2",
|
|
["price"] = 65000,
|
|
["category"] = "sports",
|
|
["hash"] = "1737773231",
|
|
["shop"] = "pdm",
|
|
},
|
|
["rapidgt3"] = {
|
|
["name"] = "Rapid GT",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "rapidgt3",
|
|
["price"] = 445000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "2049897956",
|
|
["shop"] = "pdm",
|
|
},
|
|
["reaper"] = {
|
|
["name"] = "Reaper",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "reaper",
|
|
["price"] = 365000,
|
|
["category"] = "super",
|
|
["hash"] = "234062309",
|
|
["shop"] = "pdm",
|
|
},
|
|
["rebel2"] = {
|
|
["name"] = 'Rebel',
|
|
["brand"] = "Annis",
|
|
["model"] = "rebel2",
|
|
["price"] = 35000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("rebel2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["regina"] = {
|
|
["name"] = "Regina",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "regina",
|
|
["price"] = 10000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-14495224",
|
|
["shop"] = "pdm",
|
|
},
|
|
["revolter"] = {
|
|
["name"] = "Revolter",
|
|
["brand"] = "Ubermacht",
|
|
["model"] = "revolter",
|
|
["price"] = 195000,
|
|
["category"] = "sports",
|
|
["hash"] = "-410205223",
|
|
["shop"] = "pdm",
|
|
},
|
|
["rhapsody"] = {
|
|
["name"] = "Rhapsody",
|
|
["brand"] = "Declasse",
|
|
["model"] = "rhapsody",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = "841808271",
|
|
["shop"] = "pdm",
|
|
},
|
|
["rocoto"] = {
|
|
["name"] = "Rocoto",
|
|
["brand"] = "Obey",
|
|
["model"] = "rocoto",
|
|
["price"] = 48500,
|
|
["category"] = "suvs",
|
|
["hash"] = "2136773105",
|
|
["shop"] = "pdm",
|
|
},
|
|
["ruffian"] = {
|
|
["name"] = "Ruffian",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "ruffian",
|
|
["price"] = 14000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-893578776",
|
|
["shop"] = "pdm",
|
|
},
|
|
["rumpo"] = {
|
|
["name"] = "Rumpo",
|
|
["brand"] = "Bravado",
|
|
["model"] = "rumpo",
|
|
["price"] = 30000,
|
|
["category"] = "vans",
|
|
["hash"] = "1162065741",
|
|
["shop"] = "pdm",
|
|
},
|
|
["ruston"] = {
|
|
["name"] = "Ruston",
|
|
["brand"] = "Hijak",
|
|
["model"] = "ruston",
|
|
["price"] = 165000,
|
|
["category"] = "sports",
|
|
["hash"] = "719660200",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sabregt"] = {
|
|
["name"] = "Sabre Turbo",
|
|
["brand"] = "Declasse",
|
|
["model"] = "sabregt",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1685021548",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sabregt2"] = {
|
|
["name"] = "Sabre GT",
|
|
["brand"] = "Declasse",
|
|
["model"] = "sabregt2",
|
|
["price"] = 29500,
|
|
["category"] = "muscle",
|
|
["hash"] = "223258115",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sandking"] = {
|
|
["name"] = 'Sandking',
|
|
["brand"] = "Annis",
|
|
["price"] = 55000,
|
|
["category"] = "offroad",
|
|
["model"] = "sandking",
|
|
["hash"] = GetHashKey("sandking"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sc1"] = {
|
|
["name"] = "SC1",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "sc1",
|
|
["price"] = 750000,
|
|
["category"] = "super",
|
|
["hash"] = "1352136073",
|
|
["shop"] = "pdm",
|
|
},
|
|
["schafter2"] = {
|
|
["name"] = "Schafter",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schafter2",
|
|
["price"] = 32000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1255452397",
|
|
["shop"] = "pdm",
|
|
},
|
|
["schafter3"] = {
|
|
["name"] = "Schafter V12",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schafter3",
|
|
["price"] = 69000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1485523546",
|
|
["shop"] = "pdm",
|
|
},
|
|
["seminole"] = {
|
|
["name"] = "Seminole",
|
|
["brand"] = "Canis",
|
|
["model"] = "seminole",
|
|
["price"] = 29500,
|
|
["category"] = "suvs",
|
|
["hash"] = "1221512915",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sentinel"] = {
|
|
["name"] = "Sentinel",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "sentinel",
|
|
["price"] = 30000,
|
|
["category"] = "coupes",
|
|
["hash"] = "1349725314",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sentinel2"] = {
|
|
["name"] = "Sentinel XS",
|
|
["brand"] = " Übermacht",
|
|
["model"] = "sentinel2",
|
|
["price"] = 36500,
|
|
["category"] = "coupes",
|
|
["hash"] = "873639469",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sentinel3"] = {
|
|
["name"] = "Sentinel Classic",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "sentinel3",
|
|
["price"] = 40000,
|
|
["category"] = "coupes",
|
|
["hash"] = GetHashKey("sentinel3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["seven70"] = {
|
|
["name"] = "Seven-70",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "seven70",
|
|
["price"] = 85000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1757836725",
|
|
["shop"] = "pdm",
|
|
},
|
|
["slamvan3"] = {
|
|
["name"] = "Slam Van Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamvan3",
|
|
["price"] = 35000,
|
|
["category"] = "muscle",
|
|
["hash"] = "1119641113",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sovereign"] = {
|
|
["name"] = "Sovereign",
|
|
["brand"] = "WMC",
|
|
["model"] = "sovereign",
|
|
["price"] = 27000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "743478836",
|
|
["shop"] = "pdm",
|
|
},
|
|
["specter"] = {
|
|
["name"] = "Specter",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "specter",
|
|
["price"] = 155000,
|
|
["category"] = "sports",
|
|
["hash"] = "1886268224",
|
|
["shop"] = "pdm",
|
|
},
|
|
["stafford"] = {
|
|
["name"] = "Stafford",
|
|
["brand"] = "Enus",
|
|
["model"] = "stafford",
|
|
["price"] = 45000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("stafford"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stalion"] = {
|
|
["name"] = "Stallion",
|
|
["brand"] = "Declasse",
|
|
["model"] = "stalion",
|
|
["price"] = 23500,
|
|
["category"] = "muscle",
|
|
["hash"] = "1923400478",
|
|
["shop"] = "pdm",
|
|
},
|
|
["stingergt"] = {
|
|
["name"] = "Stinger GT",
|
|
["brand"] = "Grotti",
|
|
["model"] = "stingergt",
|
|
["price"] = 184000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-2098947590",
|
|
["shop"] = "pdm",
|
|
},
|
|
["streiter"] = {
|
|
["name"] = "Streiter",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "streiter",
|
|
["price"] = 98000,
|
|
["category"] = "sports",
|
|
["hash"] = "1741861769",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sultan"] = {
|
|
["name"] = "Sultan",
|
|
["brand"] = "Karin",
|
|
["model"] = "sultan",
|
|
["price"] = 56500,
|
|
["category"] = "sports",
|
|
["hash"] = "970598228",
|
|
["shop"] = "pdm",
|
|
},
|
|
["sultanrs"] = {
|
|
["name"] = "Sultan RS",
|
|
["brand"] = "Karin",
|
|
["model"] = "sultanrs",
|
|
["price"] = 76500,
|
|
["category"] = "sports",
|
|
["hash"] = "-295689028",
|
|
["shop"] = "pdm",
|
|
},
|
|
["superd"] = {
|
|
["name"] = "Super Diamond",
|
|
["brand"] = "Enus",
|
|
["model"] = "superd",
|
|
["price"] = 108000,
|
|
["category"] = "sedans",
|
|
["hash"] = "1123216662",
|
|
["shop"] = "pdm",
|
|
},
|
|
["surano"] = {
|
|
["name"] = "Surano",
|
|
["brand"] = " Benefactor",
|
|
["model"] = "surano",
|
|
["price"] = 89000,
|
|
["category"] = "sports",
|
|
["hash"] = "384071873",
|
|
["shop"] = "pdm",
|
|
},
|
|
["surge"] = {
|
|
["name"] = "Surge",
|
|
["brand"] = "Cheval",
|
|
["model"] = "surge",
|
|
["price"] = 28500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1894894188",
|
|
["shop"] = "pdm",
|
|
},
|
|
["t20"] = {
|
|
["name"] = "T20",
|
|
["brand"] = "Progen",
|
|
["model"] = "t20",
|
|
["price"] = 1680000,
|
|
["category"] = "super",
|
|
["hash"] = "1663218586",
|
|
["shop"] = "pdm",
|
|
},
|
|
["tailgater"] = {
|
|
["name"] = "Tailgater",
|
|
["brand"] = "Obey",
|
|
["model"] = "tailgater",
|
|
["price"] = 45000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1008861746",
|
|
["shop"] = "pdm",
|
|
},
|
|
["taipan"] = {
|
|
["name"] = "Taipan",
|
|
["brand"] = "Cheval",
|
|
["model"] = "taipan",
|
|
["price"] = 1650000,
|
|
["category"] = "super",
|
|
["hash"] = "-1134706562",
|
|
["shop"] = "pdm",
|
|
},
|
|
["tampa"] = {
|
|
["name"] = "Tampa",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tampa",
|
|
["price"] = 27500,
|
|
["category"] = "muscle",
|
|
["hash"] = "972671128",
|
|
["shop"] = "pdm",
|
|
},
|
|
["tampa2"] = {
|
|
["name"] = "Drift Tampa",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tampa2",
|
|
["price"] = 50500,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("tampa2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tempesta"] = {
|
|
["name"] = "Tempesta",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "tempesta",
|
|
["price"] = 400000,
|
|
["category"] = "super",
|
|
["hash"] = "272929391",
|
|
["shop"] = "pdm",
|
|
},
|
|
["tezeract"] = {
|
|
["name"] = "Tezeract",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "tezeract",
|
|
["price"] = 2350000,
|
|
["category"] = "super",
|
|
["hash"] = "1031562256",
|
|
["shop"] = "pdm",
|
|
},
|
|
["thrust"] = {
|
|
["name"] = "Thrust",
|
|
["brand"] = "Dinka",
|
|
["model"] = "thrust",
|
|
["price"] = 16000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "1836027715",
|
|
["shop"] = "pdm",
|
|
},
|
|
["torero"] = {
|
|
["name"] = "Torero",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "torero",
|
|
["price"] = 285500,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "1504306544",
|
|
["shop"] = "pdm",
|
|
},
|
|
["trophytruck"] = {
|
|
["name"] = 'Trophy Truck',
|
|
["brand"] = "Annis",
|
|
["price"] = 60000,
|
|
["category"] = "offroad",
|
|
["model"] = "trophytruck",
|
|
["hash"] = GetHashKey("trophytruck"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["trophytruck2"] = {
|
|
["name"] = 'Trophy Truck Limited',
|
|
["brand"] = "Annis",
|
|
["price"] = 80000,
|
|
["category"] = "offroad",
|
|
["model"] = "trophytruck2",
|
|
["hash"] = GetHashKey("trophytruck2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["turismor"] = {
|
|
["name"] = "Turismo R",
|
|
["brand"] = "Grotti",
|
|
["model"] = "turismor",
|
|
["price"] = 750000,
|
|
["category"] = "super",
|
|
["hash"] = "408192225",
|
|
["shop"] = "pdm",
|
|
},
|
|
["tyrant"] = {
|
|
["name"] = "Tyrant",
|
|
["brand"] = " Överflöd",
|
|
["model"] = "tyrant",
|
|
["price"] = 2100000,
|
|
["category"] = "super",
|
|
["hash"] = "-376434238",
|
|
["shop"] = "pdm",
|
|
},
|
|
["vacca"] = {
|
|
["name"] = "Vacca",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "vacca",
|
|
["price"] = 255000,
|
|
["category"] = "super",
|
|
["hash"] = "338562499",
|
|
["shop"] = "pdm",
|
|
},
|
|
["vagner"] = {
|
|
["name"] = "Vagner",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "vagner",
|
|
["price"] = 1460000,
|
|
["category"] = "super",
|
|
["hash"] = "1939284556",
|
|
["shop"] = "pdm",
|
|
},
|
|
["verlierer2"] = {
|
|
["name"] = "Verlierer",
|
|
["brand"] = "Bravado",
|
|
["model"] = "verlierer2",
|
|
["price"] = 90500,
|
|
["category"] = "sports",
|
|
["hash"] = "1102544804",
|
|
["shop"] = "pdm",
|
|
},
|
|
["vigero"] = {
|
|
["name"] = "Vigero",
|
|
["brand"] = "Declasse",
|
|
["model"] = "vigero",
|
|
["price"] = 16500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-825837129",
|
|
["shop"] = "pdm",
|
|
},
|
|
["virgo"] = {
|
|
["name"] = "Virgo",
|
|
["brand"] = "Albany",
|
|
["model"] = "virgo",
|
|
["price"] = 19700,
|
|
["category"] = "muscle",
|
|
["hash"] = "-498054846",
|
|
["shop"] = "pdm",
|
|
},
|
|
["visione"] = {
|
|
["name"] = "Visione",
|
|
["brand"] = "Grotti",
|
|
["model"] = "visione",
|
|
["price"] = 1750000,
|
|
["category"] = "sports",
|
|
["hash"] = "-998177792",
|
|
["shop"] = "pdm",
|
|
},
|
|
["voltic"] = {
|
|
["name"] = "Voltic",
|
|
["brand"] = "Coil",
|
|
["model"] = "voltic",
|
|
["price"] = 120000,
|
|
["category"] = "super",
|
|
["hash"] = "-1622444098",
|
|
["shop"] = "pdm",
|
|
},
|
|
["voodoo"] = {
|
|
["name"] = "Voodoo",
|
|
["brand"] = "Declasse",
|
|
["model"] = "voodoo",
|
|
["price"] = 21000,
|
|
["category"] = "muscle",
|
|
["hash"] = "523724515",
|
|
["shop"] = "pdm",
|
|
},
|
|
["washington"] = {
|
|
["name"] = "Washington",
|
|
["brand"] = "Albany",
|
|
["model"] = "washington",
|
|
["price"] = 19000,
|
|
["category"] = "sedans",
|
|
["hash"] = "1777363799",
|
|
["shop"] = "pdm",
|
|
},
|
|
["windsor"] = {
|
|
["name"] = "Windsor",
|
|
["brand"] = "Enus",
|
|
["model"] = "windsor",
|
|
["price"] = 325000,
|
|
["category"] = "coupes",
|
|
["hash"] = "1581459400",
|
|
["shop"] = "pdm",
|
|
},
|
|
["windsor2"] = {
|
|
["name"] = "Windsor Drop",
|
|
["brand"] = "Enus",
|
|
["model"] = "windsor2",
|
|
["price"] = 355000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-1930048799",
|
|
["shop"] = "pdm",
|
|
},
|
|
["xa21"] = {
|
|
["name"] = "XA-21",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "xa21",
|
|
["price"] = 2150000,
|
|
["category"] = "super",
|
|
["hash"] = "917809321",
|
|
["shop"] = "pdm",
|
|
},
|
|
["xls"] = {
|
|
["name"] = "XLS",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "xls",
|
|
["price"] = 75000,
|
|
["category"] = "suvs",
|
|
["hash"] = "1203490606",
|
|
["shop"] = "pdm",
|
|
},
|
|
["yosemite"] = {
|
|
["name"] = "Yosemite",
|
|
["brand"] = "Declasse",
|
|
["model"] = "yosemite",
|
|
["price"] = 19500,
|
|
["category"] = "muscle",
|
|
["hash"] = "1871995513",
|
|
["shop"] = "pdm",
|
|
},
|
|
["z190"] = {
|
|
["name"] = "190Z",
|
|
["brand"] = "Karin",
|
|
["model"] = "z190",
|
|
["price"] = 330000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "838982985",
|
|
["shop"] = "pdm",
|
|
},
|
|
["zentorno"] = {
|
|
["name"] = "Zentorno",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "zentorno",
|
|
["price"] = 1250000,
|
|
["category"] = "super",
|
|
["hash"] = "-1403128555",
|
|
["shop"] = "pdm",
|
|
},
|
|
["zion"] = {
|
|
["name"] = "Zion",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "zion",
|
|
["price"] = 25500,
|
|
["category"] = "coupes",
|
|
["hash"] = "-1122289213",
|
|
["shop"] = "pdm",
|
|
},
|
|
["zion2"] = {
|
|
["name"] = "Zion Cabrio",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "zion2",
|
|
["price"] = 27000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-1193103848",
|
|
["shop"] = "pdm",
|
|
},
|
|
["zombieb"] = {
|
|
["name"] = "Zombie Chopper",
|
|
["brand"] = "Western",
|
|
["model"] = "zombieb",
|
|
["price"] = 17000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("zombieb"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["ztype"] = {
|
|
["name"] = "Z-Type",
|
|
["brand"] = "Truffade",
|
|
["model"] = "ztype",
|
|
["price"] = 2500000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "758895617",
|
|
["shop"] = "pdm",
|
|
},
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE BELOW VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
["akuma"] = {
|
|
["name"] = "Akuma",
|
|
["brand"] = "Dinka",
|
|
["model"] = "akuma",
|
|
["price"] = 7500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("akuma"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["asbo"] = {
|
|
["name"] = "Asbo",
|
|
["brand"] = "Maxwell",
|
|
["model"] = "asbo",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("asbo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["asterope"] = {
|
|
["name"] = "Asterope",
|
|
["brand"] = "Karin",
|
|
["model"] = "asterope",
|
|
["price"] = 10000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("asterope"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["baller"] = {
|
|
["name"] = "Baller",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller",
|
|
["price"] = 30000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["baller4"] = {
|
|
["name"] = "Baller LE LWB",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller4",
|
|
["price"] = 700000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["baller5"] = {
|
|
["name"] = "Baller LE (Armored)",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller5",
|
|
["price"] = 1000000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["baller6"] = {
|
|
["name"] = "Baller LE LWB (Armored)",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller6",
|
|
["price"] = 1200000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller6"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["bati2"] = {
|
|
["name"] = "Bati 801RR",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "bati2",
|
|
["price"] = 19000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("bati2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["bf400"] = {
|
|
["name"] = "BF400",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "bf400",
|
|
["price"] = 6500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("bf400"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["blazer2"] = {
|
|
["name"] = "Blazer Lifeguard",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "blazer2",
|
|
["price"] = 7000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("blazer2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["blazer3"] = {
|
|
["name"] = "Blazer Hot Rod",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "blazer3",
|
|
["price"] = 7000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("blazer3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["blazer5"] = {
|
|
["name"] = "Blazer Aqua",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "blazer5",
|
|
["price"] = 1755600,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("blazer5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["blista3"] = {
|
|
["name"] = "Blista Go Go Monkey",
|
|
["brand"] = "Dinka",
|
|
["model"] = "blista3",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("blista3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["bmx"] = {
|
|
["name"] = "BMX",
|
|
["model"] = "bmx",
|
|
["price"] = 160,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("bmx"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["brioso2"] = {
|
|
["name"] = "Brioso 300",
|
|
["brand"] = "Grotti",
|
|
["model"] = "brioso2",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("brioso2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["caracara"] = {
|
|
["name"] = "Caracara",
|
|
["brand"] = "Vapid",
|
|
["model"] = "caracara",
|
|
["price"] = 400000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("caracara"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["caracara2"] = {
|
|
["name"] = "Caracara 4x4",
|
|
["brand"] = "Vapid",
|
|
["model"] = "caracara2",
|
|
["price"] = 500000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("caracara2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["cavalcade"] = {
|
|
["name"] = "Cavalcade",
|
|
["brand"] = "Albany",
|
|
["model"] = "cavalcade",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("cavalcade"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["cheburek"] = {
|
|
["name"] = "Cheburek",
|
|
["brand"] = "Rune",
|
|
["model"] = "cheburek",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("cheburek"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["cliffhanger"] = {
|
|
["name"] = "Cliffhanger",
|
|
["brand"] = "Western",
|
|
["model"] = "cliffhanger",
|
|
["price"] = 9500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("cliffhanger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["clique"] = {
|
|
["name"] = "Clique",
|
|
["brand"] = "Vapid",
|
|
["model"] = "clique",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("clique"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["club"] = {
|
|
["name"] = "Club",
|
|
["brand"] = "BF",
|
|
["model"] = "club",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("club"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["cog55"] = {
|
|
["name"] = "Cognoscenti 55",
|
|
["brand"] = "Enus",
|
|
["model"] = "cog55",
|
|
["price"] = 60000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("cog55"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["comet4"] = {
|
|
["name"] = "Comet Safari",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet4",
|
|
["price"] = 80000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("comet4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["contender"] = {
|
|
["name"] = "Contender",
|
|
["brand"] = "Vapid",
|
|
["model"] = "contender",
|
|
["price"] = 70000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("contender"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["coquette4"] = {
|
|
["name"] = "Coquette D10",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette4",
|
|
["price"] = 70000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("coquette4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["cruiser"] = {
|
|
["name"] = "Cruiser",
|
|
["model"] = "cruiser",
|
|
["price"] = 510,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("cruiser"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["daemon2"] = {
|
|
["name"] = "Daemon Custom",
|
|
["brand"] = "Western",
|
|
["model"] = "daemon2",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("daemon2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["deluxo"] = {
|
|
["name"] = "Deluxo",
|
|
["brand"] = "Imponte",
|
|
["model"] = "deluxo",
|
|
["price"] = 4721500,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("deluxo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["deveste"] = {
|
|
["name"] = "Deveste",
|
|
["brand"] = "Principe",
|
|
["model"] = "deveste",
|
|
["price"] = 50000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("deveste"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["deviant"] = {
|
|
["name"] = "Deviant",
|
|
["brand"] = "Schyster",
|
|
["model"] = "deviant",
|
|
["price"] = 60000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("deviant"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["diabolus"] = {
|
|
["name"] = "Diabolus",
|
|
["brand"] = "Principe",
|
|
["model"] = "diabolus",
|
|
["price"] = 10000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("diabolus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["diabolus2"] = {
|
|
["name"] = "Diabolus Custom",
|
|
["brand"] = "Principe",
|
|
["model"] = "diabolus2",
|
|
["price"] = 12000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("diabolus2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dilettante2"] = {
|
|
["name"] = "Dilettante Patrol",
|
|
["brand"] = "Karin",
|
|
["model"] = "dilettante2",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("dilettante2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dominator2"] = {
|
|
["name"] = "Pißwasser Dominator",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator2",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dominator2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dominator3"] = {
|
|
["name"] = "Dominator GTX",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator3",
|
|
["price"] = 100000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dominator3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dominator4"] = {
|
|
["name"] = "Dominator Arena",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator4",
|
|
["price"] = 350000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dominator4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["double"] = {
|
|
["name"] = "Double-T",
|
|
["brand"] = "Dinka",
|
|
["model"] = "double",
|
|
["price"] = 28000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("double"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["drafter"] = {
|
|
["name"] = "8F Drafter",
|
|
["brand"] = "Obey",
|
|
["model"] = "drafter",
|
|
["price"] = 80000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("drafter"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dubsta"] = {
|
|
["name"] = "Dubsta",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "dubsta",
|
|
["price"] = 45000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("dubsta"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dukes2"] = {
|
|
["name"] = "Dukes Nightrider",
|
|
["brand"] = "Imponte",
|
|
["model"] = "dukes2",
|
|
["price"] = 30000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dukes2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dukes3"] = {
|
|
["name"] = "Beater Dukes",
|
|
["brand"] = "Imponte",
|
|
["model"] = "dukes3",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dukes3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["dynasty"] = {
|
|
["name"] = "Dynasty",
|
|
["brand"] = "Weeny",
|
|
["model"] = "dynasty",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("dynasty"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["emerus"] = {
|
|
["name"] = "Emerus",
|
|
["brand"] = "Progen",
|
|
["model"] = "emerus",
|
|
["price"] = 400000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("emerus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["enduro"] = {
|
|
["name"] = "Enduro",
|
|
["brand"] = "Dinka",
|
|
["model"] = "enduro",
|
|
["price"] = 5500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("enduro"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["everon"] = {
|
|
["name"] = "Everon",
|
|
["brand"] = "Karin",
|
|
["model"] = "everon",
|
|
["price"] = 500000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("everon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["faction3"] = {
|
|
["name"] = "Faction Custom Donk",
|
|
["brand"] = "Willard",
|
|
["model"] = "faction3",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("faction3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["faggio2"] = {
|
|
["name"] = "Faggio",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "faggio2",
|
|
["price"] = 1900,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("faggio2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["fcr"] = {
|
|
["name"] = "FCR 1000",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "fcr",
|
|
["price"] = 5000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("fcr"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["fcr2"] = {
|
|
["name"] = "FCR 1000 Custom",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "fcr2",
|
|
["price"] = 6000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("fcr2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["fixter"] = {
|
|
["name"] = "Fixter",
|
|
["model"] = "fixter",
|
|
["price"] = 225,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("fixter"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["freecrawler"] = {
|
|
["name"] = "Freecrawler",
|
|
["brand"] = "Canis",
|
|
["model"] = "freecrawler",
|
|
["price"] = 25000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("freecrawler"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["furia"] = {
|
|
["name"] = "Furia",
|
|
["brand"] = "Grotti",
|
|
["model"] = "furia",
|
|
["price"] = 300000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("furia"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["gargoyle"] = {
|
|
["name"] = "Gargoyle",
|
|
["brand"] = "Western",
|
|
["model"] = "gargoyle",
|
|
["price"] = 16500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("gargoyle"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["gauntlet2"] = {
|
|
["name"] = "Redwood Gauntlet",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 35000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gauntlet3"] = {
|
|
["name"] = "Classic Gauntlet",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gauntlet4"] = {
|
|
["name"] = "Gauntlet Hellfire",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 50000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
["gauntlet5"] = {
|
|
["name"] = "Gauntlet Classic Custom",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet5",
|
|
["price"] = 75000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("gauntlet5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["gb200"] = {
|
|
["name"] = "GB 200",
|
|
["brand"] = "Vapid",
|
|
["model"] = "gb200",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("gb200"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["glendale2"] = {
|
|
["name"] = "Glendale",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "glendale2",
|
|
["price"] = 7000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("glendale2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["habanero"] = {
|
|
["name"] = "Habanero",
|
|
["brand"] = "Emperor",
|
|
["model"] = "habanero",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("habanero"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["hakuchou2"] = {
|
|
["name"] = "Hakuchou Drag",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "hakuchou2",
|
|
["price"] = 55000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("hakuchou2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["hellion"] = {
|
|
["name"] = "Hellion",
|
|
["brand"] = "Annis",
|
|
["model"] = "hellion",
|
|
["price"] = 20000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("hellion"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["hermes"] = {
|
|
["name"] = "Hermes",
|
|
["brand"] = "Albany",
|
|
["model"] = "hermes",
|
|
["price"] = 535000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("hermes"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["imorgon"] = {
|
|
["name"] = "Imorgon",
|
|
["brand"] = "Overflod",
|
|
["model"] = "imorgon",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("imorgon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["ingot"] = {
|
|
["name"] = "Ingot",
|
|
["brand"] = "Vulcar",
|
|
["model"] = "ingot",
|
|
["price"] = 4999,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("ingot"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["innovation"] = {
|
|
["name"] = "Innovation",
|
|
["brand"] = "LLC",
|
|
["model"] = "innovation",
|
|
["price"] = 23500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("innovation"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["issi4"] = {
|
|
["name"] = "Issi Arena",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi4",
|
|
["price"] = 50000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("issi4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["issi7"] = {
|
|
["name"] = "Issi Sport",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi7",
|
|
["price"] = 60000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("issi7"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["italigtb2"] = {
|
|
["name"] = "Itali GTB",
|
|
["brand"] = "Progen",
|
|
["model"] = "italigtb2",
|
|
["price"] = 600000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("italigtb2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["italigto"] = {
|
|
["name"] = "Itali GTO",
|
|
["brand"] = "Progen",
|
|
["model"] = "italigto",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("italigto"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["italirsx"] = {
|
|
["name"] = "Itali RSX",
|
|
["brand"] = "Progen",
|
|
["model"] = "italirsx",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("italirsx"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["jb700"] = {
|
|
["name"] = "JB 700",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "jb700",
|
|
["price"] = 400000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("jb700"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["jb7002"] = {
|
|
["name"] = "JB 700W",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "jb7002",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("jb7002"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["jester2"] = {
|
|
["name"] = "Jester Racecar",
|
|
["brand"] = "Dinka",
|
|
["model"] = "jester2",
|
|
["price"] = 135000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("jester2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["journey"] = {
|
|
["name"] = "Journey",
|
|
["brand"] = "Zirconium",
|
|
["model"] = "journey",
|
|
["price"] = 6500,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("journey"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["jugular"] = {
|
|
["name"] = "Jugular",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "jugular",
|
|
["price"] = 40000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("jugular"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["kalahari"] = {
|
|
["name"] = "Kalahari",
|
|
["brand"] = "Canis",
|
|
["model"] = "kalahari",
|
|
["price"] = 20000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("kalahari"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["kamacho"] = {
|
|
["name"] = "Kamacho",
|
|
["brand"] = "Canis",
|
|
["model"] = "kamacho",
|
|
["price"] = 345000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("kamacho"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["kanjo"] = {
|
|
["name"] = "Blista Kanjo",
|
|
["brand"] = "Dinka",
|
|
["model"] = "kanjo",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("kanjo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["komoda"] = {
|
|
["name"] = "Komoda",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "komoda",
|
|
["price"] = 40000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("komoda"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["krieger"] = {
|
|
["name"] = "Krieger",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "krieger",
|
|
["price"] = 40000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("krieger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["landstalker2"] = {
|
|
["name"] = "Landstalker XL",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "landstalker2",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("landstalker2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["le7b"] = {
|
|
["name"] = "RE-7B",
|
|
["brand"] = "Annis",
|
|
["model"] = "le7b",
|
|
["price"] = 325000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("le7b"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["lectro"] = {
|
|
["name"] = "Lectro",
|
|
["brand"] = "Principe",
|
|
["model"] = "lectro",
|
|
["price"] = 10000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("lectro"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["locust"] = {
|
|
["name"] = "Locust",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "locust",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("locust"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["lurcher"] = {
|
|
["name"] = "Gauntlet Classic Custom",
|
|
["brand"] = "Bravado",
|
|
["model"] = "lurcher",
|
|
["price"] = 75000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("lurcher"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["manana"] = {
|
|
["name"] = "Manana",
|
|
["brand"] = "Albany",
|
|
["model"] = "manana",
|
|
["price"] = 12800,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("manana"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["manana2"] = {
|
|
["name"] = "Manana Custom",
|
|
["brand"] = "Albany",
|
|
["model"] = "manana2",
|
|
["price"] = 50000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("manana2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["manchez"] = {
|
|
["name"] = "Manchez",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "manchez",
|
|
["price"] = 5300,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("manchez"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["manchez2"] = {
|
|
["name"] = "Manchez",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "manchez2",
|
|
["price"] = 7000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("manchez2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["massacro2"] = {
|
|
["name"] = "Massacro Racecar",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "massacro2",
|
|
["price"] = 235000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("massacro2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["mesa"] = {
|
|
["name"] = "Mesa",
|
|
["brand"] = "Canis",
|
|
["model"] = "mesa",
|
|
["price"] = 16000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("mesa"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["mesa3"] = {
|
|
["name"] = "Mesa Merryweather",
|
|
["brand"] = "Canis",
|
|
["model"] = "mesa3",
|
|
["price"] = 40000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("mesa3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["michelli"] = {
|
|
["name"] = "Michelli GT",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "michelli",
|
|
["price"] = 60000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("michelli"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["minivan"] = {
|
|
["name"] = "Minivan",
|
|
["brand"] = "Vapid",
|
|
["model"] = "minivan",
|
|
["price"] = 13000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("minivan"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["minivan2"] = {
|
|
["name"] = "Minivan Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "minivan2",
|
|
["price"] = 14000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("minivan2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["moonbeam2"] = {
|
|
["name"] = "Moonbeam Custom",
|
|
["brand"] = "Declasse",
|
|
["model"] = "moonbeam2",
|
|
["price"] = 35000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("moonbeam2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["nebula"] = {
|
|
["name"] = "Nebula",
|
|
["brand"] = "Vulcar",
|
|
["model"] = "nebula",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("nebula"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["neo"] = {
|
|
["name"] = "Neo",
|
|
["brand"] = "Vysser",
|
|
["model"] = "neo",
|
|
["price"] = 500000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("neo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["nero2"] = {
|
|
["name"] = "Nero Custom",
|
|
["brand"] = "Truffade",
|
|
["model"] = "nero2",
|
|
["price"] = 50000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("nero2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["novak"] = {
|
|
["name"] = "Novak",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "novak",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("novak"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["oppressor"] = {
|
|
["name"] = "Oppressor",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "oppressor",
|
|
["price"] = 3524500,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("oppressor"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["outlaw"] = {
|
|
["name"] = "Outlaw",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "outlaw",
|
|
["price"] = 15000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("outlaw"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["paradise"] = {
|
|
["name"] = "Paradise",
|
|
["brand"] = "Bravado",
|
|
["model"] = "paradise",
|
|
["price"] = 19000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("paradise"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["paragon"] = {
|
|
["name"] = "Paragon",
|
|
["brand"] = "Enus",
|
|
["model"] = "paragon",
|
|
["price"] = 400000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("paragon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["penumbra"] = {
|
|
["name"] = "Penumbra",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "penumbra",
|
|
["price"] = 28000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("penumbra"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["penumbra2"] = {
|
|
["name"] = "Penumbra FF",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "penumbra2",
|
|
["price"] = 30000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("penumbra2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["peyote"] = {
|
|
["name"] = "Peyote",
|
|
["brand"] = "Vapid",
|
|
["model"] = "peyote",
|
|
["price"] = 30000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("peyote"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["peyote2"] = {
|
|
["name"] = "Peyote Gasser",
|
|
["brand"] = "Vapid",
|
|
["model"] = "peyote2",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("peyote2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["peyote3"] = {
|
|
["name"] = "Peyote Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "peyote3",
|
|
["price"] = 40000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("peyote3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["primo"] = {
|
|
["name"] = "Primo",
|
|
["brand"] = "Albany",
|
|
["model"] = "primo",
|
|
["price"] = 4000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("primo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["rancherxl"] = {
|
|
["name"] = "Rancher XL",
|
|
["brand"] = "Declasse",
|
|
["model"] = "rancherxl",
|
|
["price"] = 50000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("rancherxl"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["raptor"] = {
|
|
["name"] = "Raptor",
|
|
["brand"] = "BF",
|
|
["model"] = "raptor",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("raptor"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["ratbike"] = {
|
|
["name"] = "Rat Bike",
|
|
["brand"] = "Western",
|
|
["model"] = "ratbike",
|
|
["price"] = 15000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("ratbike"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["rebla"] = {
|
|
["name"] = "Rebla GTS",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "rebla",
|
|
["price"] = 30000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("rebla"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["retinue"] = {
|
|
["name"] = "Retinue",
|
|
["brand"] = "Vapid",
|
|
["model"] = "retinue",
|
|
["price"] = 615000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("retinue"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["retinue2"] = {
|
|
["name"] = "Retinue MKII",
|
|
["brand"] = "Vapid",
|
|
["model"] = "retinue2",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("retinue2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["riata"] = {
|
|
["name"] = "Riata",
|
|
["brand"] = "Vapid",
|
|
["model"] = "riata",
|
|
["price"] = 380000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("riata"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["ruiner"] = {
|
|
["name"] = "Ruiner",
|
|
["brand"] = "Imponte",
|
|
["model"] = "ruiner",
|
|
["price"] = 5000000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("ruiner"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["ruiner2"] = {
|
|
["name"] = "Ruiner 2000",
|
|
["brand"] = "Imponte",
|
|
["model"] = "ruiner2",
|
|
["price"] = 5745600,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("ruiner2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["rumpo3"] = {
|
|
["name"] = "Rumpo Custom",
|
|
["brand"] = "Bravado",
|
|
["model"] = "rumpo3",
|
|
["price"] = 19500,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("rumpo3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["s80"] = {
|
|
["name"] = "S80RR",
|
|
["brand"] = "Annis",
|
|
["model"] = "s80",
|
|
["price"] = 500000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("s80"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sadler"] = {
|
|
["name"] = "Sadler",
|
|
["brand"] = "Vapid",
|
|
["model"] = "sadler",
|
|
["price"] = 50000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("sadler"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sanchez"] = {
|
|
["name"] = "Sanchez Livery",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "sanchez",
|
|
["price"] = 5300,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("sanchez"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sanche2"] = {
|
|
["name"] = "Sanchez",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "sanchez2",
|
|
["price"] = 5300,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("sanchez2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sanctus"] = {
|
|
["name"] = "Sanctus",
|
|
["brand"] = "LCC",
|
|
["model"] = "sanctus",
|
|
["price"] = 25000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("sanctus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sandking2"] = {
|
|
["name"] = 'Sandking SWB',
|
|
["brand"] = "Annis",
|
|
["price"] = 60000,
|
|
["category"] = "offroad",
|
|
["model"] = "sandking2",
|
|
["hash"] = GetHashKey("sandking2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["savestra"] = {
|
|
["name"] = "Savestra",
|
|
["brand"] = "Annis",
|
|
["model"] = "savestra",
|
|
["price"] = 990000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("savestra"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["schafter4"] = {
|
|
["name"] = "Schafter LWB",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schafter4",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("schafter4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["schlagen"] = {
|
|
["name"] = "Schlagen GT",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schlagen",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("schlagen"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["schwarzer"] = {
|
|
["name"] = "Schwartzer",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schwarzer",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("schwarzer"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["scorcher"] = {
|
|
["name"] = "Scorcher",
|
|
["model"] = "scorcher",
|
|
["price"] = 280,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("scorcher"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["seminole2"] = {
|
|
["name"] = "Seminole Frontier",
|
|
["brand"] = "Canis",
|
|
["model"] = "seminole2",
|
|
["price"] = 30000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("seminole2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["serrano"] = {
|
|
["name"] = "Serrano",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "serrano",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("serrano"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sheava"] = {
|
|
["name"] = "ETR1",
|
|
["brand"] = "Emperor",
|
|
["model"] = "sheava",
|
|
["price"] = 220000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("sheava"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["shotaro"] = {
|
|
["name"] = "Shotaro Concept",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "shotaro",
|
|
["price"] = 320000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("shotaro"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["slamtruck"] = {
|
|
["name"] = "Slam Truck",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamtruck",
|
|
["price"] = 15000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("slamtruck"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["slamvan"] = {
|
|
["name"] = "Slam Van",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamvan",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("slamvan"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["slamvan2"] = {
|
|
["name"] = "Lost Slam Van",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamvan2",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("slamvan2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["speedo"] = {
|
|
["name"] = "Speedo",
|
|
["brand"] = "Vapid",
|
|
["model"] = "speedo",
|
|
["price"] = 20000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("speedo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["speedo4"] = {
|
|
["name"] = "Speedo Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "speedo4",
|
|
["price"] = 25000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("speedo4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stalion2"] = {
|
|
["name"] = "Stallion Burgershot",
|
|
["brand"] = "Declasse",
|
|
["model"] = "stalion2",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("stalion2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stanier"] = {
|
|
["name"] = "Stanier",
|
|
["brand"] = "Vapid",
|
|
["model"] = "stanier",
|
|
["price"] = 39999,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("stanier"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stinger"] = {
|
|
["name"] = "Stinger",
|
|
["brand"] = "Grotti",
|
|
["model"] = "stinger",
|
|
["price"] = 80000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("stinger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stratum"] = {
|
|
["name"] = "Stratum",
|
|
["brand"] = "Zirconium",
|
|
["model"] = "stratum",
|
|
["price"] = 70000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("stratum"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stretch"] = {
|
|
["name"] = "Stretch",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "stretch",
|
|
["price"] = 90000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("stretch"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stromberg"] = {
|
|
["name"] = "Stromberg",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "stromberg",
|
|
["price"] = 3185350,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("stromberg"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["stryder"] = {
|
|
["name"] = "Stryder",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "stryder",
|
|
["price"] = 15000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("stryder"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sugoi"] = {
|
|
["name"] = "Sugoi",
|
|
["brand"] = "Dinka",
|
|
["model"] = "sugoi",
|
|
["price"] = 49900,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("sugoi"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["sultan2"] = {
|
|
["name"] = "Sultan Custom",
|
|
["brand"] = "Karin",
|
|
["model"] = "sultan2",
|
|
["price"] = 20000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("sultan2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["surfer"] = {
|
|
["name"] = "Surfer",
|
|
["brand"] = "BF",
|
|
["model"] = "surfer",
|
|
["price"] = 12000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("surfer"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["swinger"] = {
|
|
["name"] = "Swinger",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "swinger",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("swinger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["thrax"] = {
|
|
["name"] = "Thrax",
|
|
["brand"] = "Truffade",
|
|
["model"] = "thrax",
|
|
["price"] = 500000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("thrax"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tigon"] = {
|
|
["name"] = "Tigon",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "tigon",
|
|
["price"] = 400000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("tigon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["toreador"] = {
|
|
["name"] = "Toreador",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "toreador",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("toreador"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tornado"] = {
|
|
["name"] = "Tornado",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tornado",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("tornado"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tornado2"] = {
|
|
["name"] = "Tornado Gang",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tornado2",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("tornado2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tornado5"] = {
|
|
["name"] = "Tornado Custom",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tornado5",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("tornado5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["toros"] = {
|
|
["name"] = "Toros",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "toros",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("toros"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tribike"] = {
|
|
["name"] = "Tri Bike",
|
|
["model"] = "tribike",
|
|
["price"] = 500,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("tribike"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tribike2"] = {
|
|
["name"] = "Tri Bike 2",
|
|
["model"] = "tribike2",
|
|
["price"] = 700,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("tribike2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tribike3"] = {
|
|
["name"] = "Tri Bike 3",
|
|
["model"] = "tribike3",
|
|
["price"] = 520,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("tribike3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tropos"] = {
|
|
["name"] = "Tropos Rallye",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "tropos",
|
|
["price"] = 40000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("tropos"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tulip"] = {
|
|
["name"] = "Tulip",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tulip",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("tulip"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["turismo2"] = {
|
|
["name"] = "Turismo Classic",
|
|
["brand"] = "Grotti",
|
|
["model"] = "turismo2",
|
|
["price"] = 600000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("turismo2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["tyrus"] = {
|
|
["name"] = "Tyrus",
|
|
["brand"] = "Progen",
|
|
["model"] = "tyrus",
|
|
["price"] = 600000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("tyrus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["vader"] = {
|
|
["name"] = "Vader",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "vader",
|
|
["price"] = 7200,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("vader"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["vagrant"] = {
|
|
["name"] = 'Vagrant',
|
|
["brand"] = "Maxwell",
|
|
["price"] = 200000,
|
|
["category"] = "offroad",
|
|
["model"] = "vagrant",
|
|
["hash"] = GetHashKey("vagrant"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["vamos"] = {
|
|
["name"] = "Vamos",
|
|
["brand"] = "Declasse",
|
|
["model"] = "vamos",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("vamos"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["verus"] = {
|
|
["name"] = 'Verus',
|
|
["brand"] = "Dinka",
|
|
["price"] = 100000,
|
|
["category"] = "offroad",
|
|
["model"] = "verus",
|
|
["hash"] = GetHashKey("verus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["vindicator"] = {
|
|
["name"] = "Vindicator",
|
|
["brand"] = "Dinka",
|
|
["model"] = "vindicator",
|
|
["price"] = 10000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("vindicator"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["virgo2"] = {
|
|
["name"] = "Virgo Custom Classic",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "virgo2",
|
|
["price"] = 16000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("virgo2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["viseris"] = {
|
|
["name"] = "Viseris",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "viseris",
|
|
["price"] = 875000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("viseris"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["voltic2"] = {
|
|
["name"] = "Rocket Voltic",
|
|
["brand"] = "Coil",
|
|
["model"] = "voltic2",
|
|
["price"] = 3830400,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("voltic2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["vortex"] = {
|
|
["name"] = "Vortex",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "vortex",
|
|
["price"] = 9800,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("vortex"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["vstr"] = {
|
|
["name"] = "V-STR",
|
|
["brand"] = "Albany",
|
|
["model"] = "vstr",
|
|
["price"] = 80000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("vstr"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["warrener"] = {
|
|
["name"] = "Warrener",
|
|
["brand"] = "Vulcar",
|
|
["model"] = "warrener",
|
|
["price"] = 4000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("warrener"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["weevil"] = {
|
|
["name"] = "Weevil",
|
|
["brand"] = "BF",
|
|
["model"] = "weevil",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("weevil"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["winky"] = {
|
|
["name"] = 'Winky',
|
|
["brand"] = "Vapid",
|
|
["price"] = 10000,
|
|
["category"] = "offroad",
|
|
["model"] = "winky",
|
|
["hash"] = GetHashKey("winky"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["wolfsbane"] = {
|
|
["name"] = "Wolfsbane",
|
|
["brand"] = "Western",
|
|
["model"] = "wolfsbane",
|
|
["price"] = 9000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("wolfsbane"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["yosemite2"] = {
|
|
["name"] = "Yosemite Drift",
|
|
["brand"] = "Declasse",
|
|
["model"] = "yosemite2",
|
|
["price"] = 400000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("yosemite2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["yosemite3"] = {
|
|
["name"] = 'Yosemite Rancher',
|
|
["brand"] = "Declasse",
|
|
["price"] = 425000,
|
|
["category"] = "offroad",
|
|
["model"] = "yosemite3",
|
|
["hash"] = GetHashKey("yosemite3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["youga"] = {
|
|
["name"] = "Youga",
|
|
["brand"] = "Bravado",
|
|
["model"] = "youga",
|
|
["price"] = 10800,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("youga"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["youga2"] = {
|
|
["name"] = "Youga Classic",
|
|
["brand"] = "Bravado",
|
|
["model"] = "youga2",
|
|
["price"] = 14500,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("youga2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["youga3"] = {
|
|
["name"] = "Youga Classic 4x4",
|
|
["brand"] = "Bravado",
|
|
["model"] = "youga3",
|
|
["price"] = 15000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("youga3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["zion3"] = {
|
|
["name"] = "Zion Classic",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "zion3",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("zion3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["zombiea"] = {
|
|
["name"] = "Zombie Bobber",
|
|
["brand"] = "Western",
|
|
["model"] = "zombiea",
|
|
["price"] = 9500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("zombiea"),
|
|
["shop"] = "pdm",
|
|
},
|
|
["zorrusso"] = {
|
|
["name"] = "Zorrusso",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "zorrusso",
|
|
["price"] = 480000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("zorrusso"),
|
|
["shop"] = "pdm",
|
|
},
|
|
}
|
|
|
|
QBShared.VehicleModels = {
|
|
[GetHashKey("akuma")] = {
|
|
["name"] = "Akuma",
|
|
["brand"] = "Dinka",
|
|
["model"] = "akuma",
|
|
["price"] = 7500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("akuma"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("asbo")] = {
|
|
["name"] = "Asbo",
|
|
["brand"] = "Maxwell",
|
|
["model"] = "asbo",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("asbo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("asterope")] = {
|
|
["name"] = "Asterope",
|
|
["brand"] = "Maxwell",
|
|
["model"] = "asterope",
|
|
["price"] = 10000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("asterope"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("baller")] = {
|
|
["name"] = "Baller",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller",
|
|
["price"] = 30000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("baller4")] = {
|
|
["name"] = "Baller LE LWB",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller4",
|
|
["price"] = 700000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("baller5")] = {
|
|
["name"] = "Baller LE (Armored)",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller5",
|
|
["price"] = 1000000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("baller6")] = {
|
|
["name"] = "Baller LE LWB (Armored)",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller6",
|
|
["price"] = 1200000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("baller6"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bati2")] = {
|
|
["name"] = "Bati 801RR",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "bati2",
|
|
["price"] = 19000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("bati2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bf400")] = {
|
|
["name"] = "BF400",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "bf400",
|
|
["price"] = 6500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("bf400"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blazer2")] = {
|
|
["name"] = "Blazer Lifeguard",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "blazer2",
|
|
["price"] = 6500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("blazer2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blazer3")] = {
|
|
["name"] = "Blazer Hot Rod",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "blazer3",
|
|
["price"] = 8500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("blazer3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blazer5")] = {
|
|
["name"] = "Blazer Aqua",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "blazer5",
|
|
["price"] = 1755600,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("blazer5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blazer5")] = {
|
|
["name"] = "Blazer Aqua",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "blazer5",
|
|
["price"] = 1755600,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("blazer5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blista3")] = {
|
|
["name"] = "Blista Go Go Monkey",
|
|
["brand"] = "Dinka",
|
|
["model"] = "blista3",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("blista3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bmx")] = {
|
|
["name"] = "BMX",
|
|
["model"] = "bmx",
|
|
["price"] = 160,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("bmx"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("brioso2")] = {
|
|
["name"] = "Brioso 300",
|
|
["brand"] = "Grotti",
|
|
["model"] = "brioso2",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("brioso2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("caracara")] = {
|
|
["name"] = "Caracara",
|
|
["brand"] = "Vapid",
|
|
["model"] = "caracara",
|
|
["price"] = 400000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("caracara"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("caracara2")] = {
|
|
["name"] = "Caracara 4x4",
|
|
["brand"] = "Vapid",
|
|
["model"] = "caracara2",
|
|
["price"] = 500000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("caracara2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cavalcade")] = {
|
|
["name"] = "Cavalcade",
|
|
["brand"] = "Albany",
|
|
["model"] = "cavalcade",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("cavalcade"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cheburek")] = {
|
|
["name"] = "Cheburek",
|
|
["brand"] = "Rune",
|
|
["model"] = "cheburek",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("cheburek"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cliffhanger")] = {
|
|
["name"] = "Cliffhanger",
|
|
["brand"] = "Western",
|
|
["model"] = "cliffhanger",
|
|
["price"] = 9500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("cliffhanger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("clique")] = {
|
|
["name"] = "Clique",
|
|
["brand"] = "Vapid",
|
|
["model"] = "clique",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("clique"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("club")] = {
|
|
["name"] = "Club",
|
|
["brand"] = "BF",
|
|
["model"] = "club",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("club"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cog55")] = {
|
|
["name"] = "Cognoscenti 55",
|
|
["brand"] = "Enus",
|
|
["model"] = "cog55",
|
|
["price"] = 60000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("cog55"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("comet4")] = {
|
|
["name"] = "Comet Safari",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet4",
|
|
["price"] = 80000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("comet4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("contender")] = {
|
|
["name"] = "Contender",
|
|
["brand"] = "Vapid",
|
|
["model"] = "contender",
|
|
["price"] = 70000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("contender"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("coquette4")] = {
|
|
["name"] = "Coquette D10",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette4",
|
|
["price"] = 70000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("coquette4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cruiser")] = {
|
|
["name"] = "Cruiser",
|
|
["model"] = "cruiser",
|
|
["price"] = 510,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("cruiser"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("daemon2")] = {
|
|
["name"] = "Daemon Custom",
|
|
["brand"] = "Western",
|
|
["model"] = "daemon2",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("daemon2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("deluxo")] = {
|
|
["name"] = "Deluxo",
|
|
["brand"] = "Imponte",
|
|
["model"] = "deluxo",
|
|
["price"] = 4721500,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("deluxo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("deveste")] = {
|
|
["name"] = "Deveste",
|
|
["brand"] = "Principe",
|
|
["model"] = "deveste",
|
|
["price"] = 50000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("deveste"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("deviant")] = {
|
|
["name"] = "Deviant",
|
|
["brand"] = "Schyster",
|
|
["model"] = "deviant",
|
|
["price"] = 60000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("deviant"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("diabolus")] = {
|
|
["name"] = "Diabolus",
|
|
["brand"] = "Principe",
|
|
["model"] = "diabolus",
|
|
["price"] = 10000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("diabolus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("diabolus2")] = {
|
|
["name"] = "Diabolus Custom",
|
|
["brand"] = "Principe",
|
|
["model"] = "diabolus2",
|
|
["price"] = 12000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("diabolus2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dilettante2")] = {
|
|
["name"] = "Dilettante Patrol",
|
|
["brand"] = "Karin",
|
|
["model"] = "dilettante2",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("dilettante2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dominator2")] = {
|
|
["name"] = "Pißwasser Dominator",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator2",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dominator2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dominator3")] = {
|
|
["name"] = "Dominator GTX",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator3",
|
|
["price"] = 100000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dominator3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dominator4")] = {
|
|
["name"] = "Dominator Arena",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator4",
|
|
["price"] = 350000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dominator4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("double")] = {
|
|
["name"] = "Double-T",
|
|
["brand"] = "Dinka",
|
|
["model"] = "double",
|
|
["price"] = 28000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("double"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("drafter")] = {
|
|
["name"] = "8F Drafter",
|
|
["brand"] = "Obey",
|
|
["model"] = "drafter",
|
|
["price"] = 80000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("drafter"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dubsta")] = {
|
|
["name"] = "Dubsta",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "dubsta",
|
|
["price"] = 45000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("dubsta"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dukes2")] = {
|
|
["name"] = "Dukes Nightrider",
|
|
["brand"] = "Imponte",
|
|
["model"] = "dukes2",
|
|
["price"] = 30000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dukes2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dukes3")] = {
|
|
["name"] = "Beater Dukes",
|
|
["brand"] = "Imponte",
|
|
["model"] = "dukes3",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("dukes3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dynasty")] = {
|
|
["name"] = "Dynasty",
|
|
["brand"] = "Weeny",
|
|
["model"] = "dynasty",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("dynasty"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("emerus")] = {
|
|
["name"] = "Emerus",
|
|
["brand"] = "Progen",
|
|
["model"] = "emerus",
|
|
["price"] = 400000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("emerus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("enduro")] = {
|
|
["name"] = "Enduro",
|
|
["brand"] = "Dinka",
|
|
["model"] = "enduro",
|
|
["price"] = 5500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("enduro"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("everon")] = {
|
|
["name"] = "Everon",
|
|
["brand"] = "Karin",
|
|
["model"] = "everon",
|
|
["price"] = 500000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("everon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey"faction3"] = {
|
|
["name"] = "Faction Custom Donk",
|
|
["brand"] = "Willard",
|
|
["model"] = "faction3",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("faction3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("faggio2")] = {
|
|
["name"] = "Faggio",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "faggio2",
|
|
["price"] = 1900,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("faggio2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fcr")] = {
|
|
["name"] = "FCR 1000",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "fcr",
|
|
["price"] = 5000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("fcr"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fcr2")] = {
|
|
["name"] = "FCR 1000 Custom",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "fcr2",
|
|
["price"] = 6000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("fcr2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fixter")] = {
|
|
["name"] = "Fixter",
|
|
["model"] = "fixter",
|
|
["price"] = 225,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("fixter"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("freecrawler")] = {
|
|
["name"] = "Freecrawler",
|
|
["brand"] = "Canis",
|
|
["model"] = "freecrawler",
|
|
["price"] = 25000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("freecrawler"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("furia")] = {
|
|
["name"] = "Furia",
|
|
["brand"] = "Grotti",
|
|
["model"] = "furia",
|
|
["price"] = 300000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("furia"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gargoyle")] = {
|
|
["name"] = "Gargoyle",
|
|
["brand"] = "Western",
|
|
["model"] = "gargoyle",
|
|
["price"] = 16500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("gargoyle"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gauntlet2")] = {
|
|
["name"] = "Redwood Gauntlet",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 35000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gauntlet3")] = {
|
|
["name"] = "Classic Gauntlet",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 40000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gauntlet4")] = {
|
|
["name"] = "Gauntlet Hellfire",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 50000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gauntlet5")] = {
|
|
["name"] = "Gauntlet Classic Custom",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet5",
|
|
["price"] = 75000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("gauntlet5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gb200")] = {
|
|
["name"] = "GB 200",
|
|
["brand"] = "Vapid",
|
|
["model"] = "gb200",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("gb200"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("glendale2")] = {
|
|
["name"] = "Glendale",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "glendale2",
|
|
["price"] = 7000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("glendale2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("habanero")] = {
|
|
["name"] = "Habanero",
|
|
["brand"] = "Emperor",
|
|
["model"] = "habanero",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("habanero"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("hakuchou2")] = {
|
|
["name"] = "Hakuchou Drag",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "hakuchou2",
|
|
["price"] = 55000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("hakuchou2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("hellion")] = {
|
|
["name"] = "Hellion",
|
|
["brand"] = "Annis",
|
|
["model"] = "hellion",
|
|
["price"] = 20000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("hellion"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("hermes")] = {
|
|
["name"] = "Hermes",
|
|
["brand"] = "Albany",
|
|
["model"] = "hermes",
|
|
["price"] = 535000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("hermes"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("imorgon")] = {
|
|
["name"] = "Imorgon",
|
|
["brand"] = "Overflod",
|
|
["model"] = "imorgon",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("imorgon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ingot")] = {
|
|
["name"] = "Ingot",
|
|
["brand"] = "Vulcar",
|
|
["model"] = "ingot",
|
|
["price"] = 4999,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("ingot"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("innovation")] = {
|
|
["name"] = "Innovation",
|
|
["brand"] = "LLC",
|
|
["model"] = "innovation",
|
|
["price"] = 23500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("innovation"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("issi4")] = {
|
|
["name"] = "Issi Arena",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi4",
|
|
["price"] = 50000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("issi4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("issi7")] = {
|
|
["name"] = "Issi Sport",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi7",
|
|
["price"] = 60000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("issi7"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("italigtb2")] = {
|
|
["name"] = "Itali GTB",
|
|
["brand"] = "Progen",
|
|
["model"] = "italigtb2",
|
|
["price"] = 600000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("italigtb2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("italigto")] = {
|
|
["name"] = "Itali GTO",
|
|
["brand"] = "Progen",
|
|
["model"] = "italigto",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("italigto"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("italirsx")] = {
|
|
["name"] = "Itali RSX",
|
|
["brand"] = "Progen",
|
|
["model"] = "italirsx",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("italirsx"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("jb700")] = {
|
|
["name"] = "JB 700",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "jb700",
|
|
["price"] = 400000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("jb700"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("jb7002")] = {
|
|
["name"] = "JB 700W",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "jb7002",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("jb7002"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("jester2")] = {
|
|
["name"] = "Jester Racecar",
|
|
["brand"] = "Dinka",
|
|
["model"] = "jester2",
|
|
["price"] = 135000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("jester2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("journey")] = {
|
|
["name"] = "Journey",
|
|
["brand"] = "Zirconium",
|
|
["model"] = "journey",
|
|
["price"] = 6500,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("journey"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("jugular")] = {
|
|
["name"] = "Jugular",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "jugular",
|
|
["price"] = 40000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("jugular"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("kalahari")] = {
|
|
["name"] = "Kalahari",
|
|
["brand"] = "Canis",
|
|
["model"] = "kalahari",
|
|
["price"] = 20000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("kalahari"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("kamacho")] = {
|
|
["name"] = "Kamacho",
|
|
["brand"] = "Canis",
|
|
["model"] = "kamacho",
|
|
["price"] = 345000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("kamacho"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("kanjo")] = {
|
|
["name"] = "Blista Kanjo",
|
|
["brand"] = "Dinka",
|
|
["model"] = "kanjo",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("kanjo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("komoda")] = {
|
|
["name"] = "Komoda",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "komoda",
|
|
["price"] = 40000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("komoda"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("krieger")] = {
|
|
["name"] = "Krieger",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "krieger",
|
|
["price"] = 40000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("krieger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("landstalker2")] = {
|
|
["name"] = "Landstalker XL",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "landstalker2",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("landstalker2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("le7b")] = {
|
|
["name"] = "RE-7B",
|
|
["brand"] = "Annis",
|
|
["model"] = "le7b",
|
|
["price"] = 325000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("le7b"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("lectro")] = {
|
|
["name"] = "Lectro",
|
|
["brand"] = "Principe",
|
|
["model"] = "lectro",
|
|
["price"] = 10000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("lectro"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("locust")] = {
|
|
["name"] = "Locust",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "locust",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("locust"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("manana")] = {
|
|
["name"] = "Manana",
|
|
["brand"] = "Albany",
|
|
["model"] = "manana",
|
|
["price"] = 12800,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("manana"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("manana2")] = {
|
|
["name"] = "Manana Custom",
|
|
["brand"] = "Albany",
|
|
["model"] = "manana2",
|
|
["price"] = 50000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("manana2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("manchez")] = {
|
|
["name"] = "Manchez",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "manchez",
|
|
["price"] = 5300,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("manchez"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("manchez2")] = {
|
|
["name"] = "Manchez",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "manchez2",
|
|
["price"] = 7000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("manchez2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("massacro2")] = {
|
|
["name"] = "Massacro Racecar",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "massacro2",
|
|
["price"] = 235000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("massacro2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("mesa")] = {
|
|
["name"] = "Mesa",
|
|
["brand"] = "Canis",
|
|
["model"] = "mesa",
|
|
["price"] = 16000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("mesa"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("mesa3")] = {
|
|
["name"] = "Mesa Merryweather",
|
|
["brand"] = "Canis",
|
|
["model"] = "mesa3",
|
|
["price"] = 40000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("mesa3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("michelli")] = {
|
|
["name"] = "Michelli GT",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "michelli",
|
|
["price"] = 60000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("michelli"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("minivan")] = {
|
|
["name"] = "Minivan",
|
|
["brand"] = "Vapid",
|
|
["model"] = "minivan",
|
|
["price"] = 13000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("minivan"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("minivan2")] = {
|
|
["name"] = "Minivan Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "minivan2",
|
|
["price"] = 14000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("minivan2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("moonbeam2")] = {
|
|
["name"] = "Moonbeam Custom",
|
|
["brand"] = "Declasse",
|
|
["model"] = "moonbeam2",
|
|
["price"] = 35000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("moonbeam2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("nebula")] = {
|
|
["name"] = "Nebula",
|
|
["brand"] = "Vulcar",
|
|
["model"] = "nebula",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("nebula"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("neo")] = {
|
|
["name"] = "Neo",
|
|
["brand"] = "Vysser",
|
|
["model"] = "neo",
|
|
["price"] = 500000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("neo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("nero2")] = {
|
|
["name"] = "Nero Custom",
|
|
["brand"] = "Truffade",
|
|
["model"] = "nero2",
|
|
["price"] = 50000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("nero2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("novak")] = {
|
|
["name"] = "Novak",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "novak",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("novak"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("oppressor")] = {
|
|
["name"] = "Oppressor",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "oppressor",
|
|
["price"] = 3524500,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("oppressor"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("outlaw")] = {
|
|
["name"] = "Outlaw",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "outlaw",
|
|
["price"] = 15000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("outlaw"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("paradise")] = {
|
|
["name"] = "Paradise",
|
|
["brand"] = "Bravado",
|
|
["model"] = "paradise",
|
|
["price"] = 19000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("paradise"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("paragon")] = {
|
|
["name"] = "Paragon",
|
|
["brand"] = "Enus",
|
|
["model"] = "paragon",
|
|
["price"] = 400000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("paragon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("penumbra")] = {
|
|
["name"] = "Penumbra",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "penumbra",
|
|
["price"] = 28000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("penumbra"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("penumbra2")] = {
|
|
["name"] = "Penumbra FF",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "penumbra2",
|
|
["price"] = 30000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("penumbra2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("peyote")] = {
|
|
["name"] = "Peyote",
|
|
["brand"] = "Vapid",
|
|
["model"] = "peyote",
|
|
["price"] = 30000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("peyote"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("peyote2")] = {
|
|
["name"] = "Peyote Gasser",
|
|
["brand"] = "Vapid",
|
|
["model"] = "peyote2",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("peyote2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("peyote3")] = {
|
|
["name"] = "Peyote Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "peyote3",
|
|
["price"] = 40000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("peyote3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("primo")] = {
|
|
["name"] = "Primo",
|
|
["brand"] = "Albany",
|
|
["model"] = "primo",
|
|
["price"] = 4000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("primo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rancherxl")] = {
|
|
["name"] = "Rancher XL",
|
|
["brand"] = "Declasse",
|
|
["model"] = "rancherxl",
|
|
["price"] = 50000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("rancherxl"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("raptor")] = {
|
|
["name"] = "Raptor",
|
|
["brand"] = "BF",
|
|
["model"] = "raptor",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("raptor"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ratbike")] = {
|
|
["name"] = "Rat Bike",
|
|
["brand"] = "Western",
|
|
["model"] = "ratbike",
|
|
["price"] = 15000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("ratbike"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rebla")] = {
|
|
["name"] = "Rebla GTS",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "rebla",
|
|
["price"] = 30000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("rebla"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("retinue")] = {
|
|
["name"] = "Retinue",
|
|
["brand"] = "Vapid",
|
|
["model"] = "retinue",
|
|
["price"] = 615000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("retinue"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("retinue2")] = {
|
|
["name"] = "Retinue MKII",
|
|
["brand"] = "Vapid",
|
|
["model"] = "retinue2",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("retinue2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("riata")] = {
|
|
["name"] = "Riata",
|
|
["brand"] = "Vapid",
|
|
["model"] = "riata",
|
|
["price"] = 380000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("riata"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ruiner")] = {
|
|
["name"] = "Ruiner",
|
|
["brand"] = "Imponte",
|
|
["model"] = "ruiner",
|
|
["price"] = 5000000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("ruiner"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ruiner2")] = {
|
|
["name"] = "Ruiner 2000",
|
|
["brand"] = "Imponte",
|
|
["model"] = "ruiner2",
|
|
["price"] = 5745600,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("ruiner2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rumpo3")] = {
|
|
["name"] = "Rumpo Custom",
|
|
["brand"] = "Bravado",
|
|
["model"] = "rumpo3",
|
|
["price"] = 19500,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("rumpo3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("s80")] = {
|
|
["name"] = "S80RR",
|
|
["brand"] = "Annis",
|
|
["model"] = "s80",
|
|
["price"] = 500000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("s80"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sadler")] = {
|
|
["name"] = "Sadler",
|
|
["brand"] = "Vapid",
|
|
["model"] = "sadler",
|
|
["price"] = 50000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("sadler"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sanchez")] = {
|
|
["name"] = "Sanchez Livery",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "sanchez",
|
|
["price"] = 5300,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("sanchez"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sanche2")] = {
|
|
["name"] = "Sanchez",
|
|
["brand"] = "Maibatsu",
|
|
["model"] = "sanchez2",
|
|
["price"] = 5300,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("sanchez2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sanctus")] = {
|
|
["name"] = "Sanctus",
|
|
["brand"] = "LCC",
|
|
["model"] = "sanctus",
|
|
["price"] = 25000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("sanctus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sandking2")] = {
|
|
["name"] = 'Sandking SWB',
|
|
["brand"] = "Annis",
|
|
["price"] = 60000,
|
|
["category"] = "offroad",
|
|
["model"] = "sandking2",
|
|
["hash"] = GetHashKey("sandking2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("savestra")] = {
|
|
["name"] = "Savestra",
|
|
["brand"] = "Annis",
|
|
["model"] = "savestra",
|
|
["price"] = 990000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("savestra"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("schafter4")] = {
|
|
["name"] = "Schafter LWB",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schafter4",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("schafter4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("schlagen")] = {
|
|
["name"] = "Schlagen GT",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schlagen",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("schlagen"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("schwarzer")] = {
|
|
["name"] = "Schwartzer",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schwarzer",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("schwarzer"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("scorcher")] = {
|
|
["name"] = "Scorcher",
|
|
["model"] = "scorcher",
|
|
["price"] = 280,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("scorcher"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("seminole2")] = {
|
|
["name"] = "Seminole Frontier",
|
|
["brand"] = "Canis",
|
|
["model"] = "seminole2",
|
|
["price"] = 30000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("seminole2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("serrano")] = {
|
|
["name"] = "Serrano",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "serrano",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("serrano"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sheava")] = {
|
|
["name"] = "ETR1",
|
|
["brand"] = "Emperor",
|
|
["model"] = "sheava",
|
|
["price"] = 220000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("sheava"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("shotaro")] = {
|
|
["name"] = "Shotaro Concept",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "shotaro",
|
|
["price"] = 320000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("shotaro"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("slamtruck")] = {
|
|
["name"] = "Slam Truck",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamtruck",
|
|
["price"] = 15000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("slamtruck"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("slamvan")] = {
|
|
["name"] = "Slam Van",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamvan",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("slamvan"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("slamvan2")] = {
|
|
["name"] = "Lost Slam Van",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamvan2",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("slamvan2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("speedo")] = {
|
|
["name"] = "Speedo",
|
|
["brand"] = "Vapid",
|
|
["model"] = "speedo",
|
|
["price"] = 20000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("speedo"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("speedo4")] = {
|
|
["name"] = "Speedo Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "speedo4",
|
|
["price"] = 25000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("speedo4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stalion2")] = {
|
|
["name"] = "Stallion Burgershot",
|
|
["brand"] = "Declasse",
|
|
["model"] = "stalion2",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("stalion2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stanier")] = {
|
|
["name"] = "Stanier",
|
|
["brand"] = "Vapid",
|
|
["model"] = "stanier",
|
|
["price"] = 39999,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("stanier"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stinger")] = {
|
|
["name"] = "Stinger",
|
|
["brand"] = "Grotti",
|
|
["model"] = "stinger",
|
|
["price"] = 80000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("stinger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stratum")] = {
|
|
["name"] = "Stratum",
|
|
["brand"] = "Zirconium",
|
|
["model"] = "stratum",
|
|
["price"] = 70000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("stratum"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stretch")] = {
|
|
["name"] = "Stretch",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "stretch",
|
|
["price"] = 90000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("stretch"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stromberg")] = {
|
|
["name"] = "Stromberg",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "stromberg",
|
|
["price"] = 3185350,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("stromberg"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stryder")] = {
|
|
["name"] = "Stryder",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "stryder",
|
|
["price"] = 15000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("stryder"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sugoi")] = {
|
|
["name"] = "Sugoi",
|
|
["brand"] = "Dinka",
|
|
["model"] = "sugoi",
|
|
["price"] = 49900,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("sugoi"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sultan2")] = {
|
|
["name"] = "Sultan Custom",
|
|
["brand"] = "Karin",
|
|
["model"] = "sultan2",
|
|
["price"] = 20000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("sultan2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("surfer")] = {
|
|
["name"] = "Surfer",
|
|
["brand"] = "BF",
|
|
["model"] = "surfer",
|
|
["price"] = 12000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("surfer"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("swinger")] = {
|
|
["name"] = "Swinger",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "swinger",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("swinger"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("thrax")] = {
|
|
["name"] = "Thrax",
|
|
["brand"] = "Truffade",
|
|
["model"] = "thrax",
|
|
["price"] = 500000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("thrax"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tigon")] = {
|
|
["name"] = "Tigon",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "tigon",
|
|
["price"] = 400000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("tigon"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("toreador")] = {
|
|
["name"] = "Toreador",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "toreador",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("toreador"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tornado")] = {
|
|
["name"] = "Tornado",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tornado",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("tornado"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tornado2")] = {
|
|
["name"] = "Tornado Gang",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tornado2",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("tornado2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tornado5")] = {
|
|
["name"] = "Tornado Custom",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tornado5",
|
|
["price"] = 50000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("tornado5"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("toros")] = {
|
|
["name"] = "Toros",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "toros",
|
|
["price"] = 50000,
|
|
["category"] = "suvs",
|
|
["hash"] = GetHashKey("toros"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tribike")] = {
|
|
["name"] = "Tri Bike",
|
|
["model"] = "tribike",
|
|
["price"] = 500,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("tribike"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tribike2")] = {
|
|
["name"] = "Tri Bike 2",
|
|
["model"] = "tribike2",
|
|
["price"] = 700,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("tribike2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tribike3")] = {
|
|
["name"] = "Tri Bike 3",
|
|
["model"] = "tribike3",
|
|
["price"] = 520,
|
|
["category"] = "cycles",
|
|
["hash"] = GetHashKey("tribike3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tropos")] = {
|
|
["name"] = "Tropos Rallye",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "tropos",
|
|
["price"] = 40000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("tropos"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tulip")] = {
|
|
["name"] = "Tulip",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tulip",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("tulip"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("turismo2")] = {
|
|
["name"] = "Turismo Classic",
|
|
["brand"] = "Grotti",
|
|
["model"] = "turismo2",
|
|
["price"] = 600000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("turismo2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tyrus")] = {
|
|
["name"] = "Tyrus",
|
|
["brand"] = "Progen",
|
|
["model"] = "tyrus",
|
|
["price"] = 600000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("tyrus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vader")] = {
|
|
["name"] = "Vader",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "vader",
|
|
["price"] = 7200,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("vader"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vagrant")] = {
|
|
["name"] = 'Vagrant',
|
|
["brand"] = "Maxwell",
|
|
["price"] = 200000,
|
|
["category"] = "offroad",
|
|
["model"] = "vagrant",
|
|
["hash"] = GetHashKey("vagrant"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vamos")] = {
|
|
["name"] = "Vamos",
|
|
["brand"] = "Declasse",
|
|
["model"] = "vamos",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("vamos"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("verus")] = {
|
|
["name"] = 'Verus',
|
|
["brand"] = "Dinka",
|
|
["price"] = 100000,
|
|
["category"] = "offroad",
|
|
["model"] = "verus",
|
|
["hash"] = GetHashKey("verus"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vindicator")] = {
|
|
["name"] = "Vindicator",
|
|
["brand"] = "Dinka",
|
|
["model"] = "vindicator",
|
|
["price"] = 10000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("vindicator"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("virgo2")] = {
|
|
["name"] = "Virgo Custom Classic",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "virgo2",
|
|
["price"] = 16000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("virgo2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("viseris")] = {
|
|
["name"] = "Viseris",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "viseris",
|
|
["price"] = 875000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("viseris"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("voltic2")] = {
|
|
["name"] = "Rocket Voltic",
|
|
["brand"] = "Coil",
|
|
["model"] = "voltic2",
|
|
["price"] = 3830400,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("voltic2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vortex")] = {
|
|
["name"] = "Vortex",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "vortex",
|
|
["price"] = 9800,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("vortex"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vstr")] = {
|
|
["name"] = "V-STR",
|
|
["brand"] = "Albany",
|
|
["model"] = "vstr",
|
|
["price"] = 80000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("vstr"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("warrener")] = {
|
|
["name"] = "Warrener",
|
|
["brand"] = "Vulcar",
|
|
["model"] = "warrener",
|
|
["price"] = 4000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("warrener"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("weevil")] = {
|
|
["name"] = "Weevil",
|
|
["brand"] = "BF",
|
|
["model"] = "weevil",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = GetHashKey("weevil"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("winky")] = {
|
|
["name"] = 'Winky',
|
|
["brand"] = "Vapid",
|
|
["price"] = 10000,
|
|
["category"] = "offroad",
|
|
["model"] = "winky",
|
|
["hash"] = GetHashKey("winky"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("wolfsbane")] = {
|
|
["name"] = "Wolfsbane",
|
|
["brand"] = "Western",
|
|
["model"] = "wolfsbane",
|
|
["price"] = 9000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("wolfsbane"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("yosemite2")] = {
|
|
["name"] = "Yosemite Drift",
|
|
["brand"] = "Declasse",
|
|
["model"] = "yosemite2",
|
|
["price"] = 400000,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("yosemite2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("yosemite3")] = {
|
|
["name"] = 'Yosemite Rancher',
|
|
["brand"] = "Declasse",
|
|
["price"] = 425000,
|
|
["category"] = "offroad",
|
|
["model"] = "yosemite3",
|
|
["hash"] = GetHashKey("yosemite3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("youga")] = {
|
|
["name"] = "Youga",
|
|
["brand"] = "Bravado",
|
|
["model"] = "youga",
|
|
["price"] = 10800,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("youga"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("youga2")] = {
|
|
["name"] = "Youga Classic",
|
|
["brand"] = "Bravado",
|
|
["model"] = "youga2",
|
|
["price"] = 14500,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("youga2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("youga3")] = {
|
|
["name"] = "Youga Classic 4x4",
|
|
["brand"] = "Bravado",
|
|
["model"] = "youga3",
|
|
["price"] = 15000,
|
|
["category"] = "vans",
|
|
["hash"] = GetHashKey("youga3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("zion3")] = {
|
|
["name"] = "Zion Classic",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "zion3",
|
|
["price"] = 500000,
|
|
["category"] = "sportsclassic",
|
|
["hash"] = GetHashKey("zion3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("zombiea")] = {
|
|
["name"] = "Zombie Bobber",
|
|
["brand"] = "Western",
|
|
["model"] = "zombiea",
|
|
["price"] = 9500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = GetHashKey("zombiea"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("zorrusso")] = {
|
|
["name"] = "Zorrusso",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "zorrusso",
|
|
["price"] = 480000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("zorrusso"),
|
|
["shop"] = "pdm",
|
|
},
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
----------MUST BE ENABLED FOR THE ABOVE VEHICLES-------------+set sv_enforceGameBuild 2189-------------------------------
|
|
[GetHashKey("adder")] = {
|
|
["name"] = "Adder",
|
|
["brand"] = "Truffade",
|
|
["model"] = "adder",
|
|
["price"] = 900000,
|
|
["category"] = "super",
|
|
["hash"] = "-1216765807",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("alpha")] = {
|
|
["name"] = "Alpha",
|
|
["brand"] = "Albany",
|
|
["model"] = "alpha",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = "767087018",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ardent")] = {
|
|
["name"] = "Ardent",
|
|
["brand"] = "Omni",
|
|
["price"] = 1150000,
|
|
["category"] = "sportsclassics",
|
|
["model"] = "ardent",
|
|
["hash"] = GetHashKey("ardent"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("asea")] = {
|
|
["name"] = "Asea",
|
|
["brand"] = "Declasse",
|
|
["model"] = "asea",
|
|
["price"] = 5500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1809822327",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("autarch")] = {
|
|
["name"] = "Autarch",
|
|
["brand"] = "Överflöd",
|
|
["model"] = "autarch",
|
|
["price"] = 1955000,
|
|
["category"] = "super",
|
|
["hash"] = GetHashKey("autarch"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("avarus")] = {
|
|
["name"] = "Avarus",
|
|
["brand"] = "LCC",
|
|
["model"] = "avarus",
|
|
["price"] = 18000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-2115793025",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bagger")] = {
|
|
["name"] = "Bagger",
|
|
["brand"] = "WMC",
|
|
["model"] = "bagger",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-2140431165",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("baller2")] = {
|
|
["name"] = "Baller",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller2",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = "142944341",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("baller3")] = {
|
|
["name"] = "Baller LE",
|
|
["brand"] = "Gallivanter",
|
|
["model"] = "baller3",
|
|
["price"] = 60000,
|
|
["category"] = "suvs",
|
|
["hash"] = "1878062887",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("banshee")] = {
|
|
["name"] = "Banshee",
|
|
["brand"] = "Bravado",
|
|
["model"] = "banshee",
|
|
["price"] = 70000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1041692462",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("banshee2")] = {
|
|
["name"] = "Banshee 900R",
|
|
["brand"] = "Bravado",
|
|
["model"] = "banshee2",
|
|
["price"] = 255000,
|
|
["category"] = "super",
|
|
["hash"] = "633712403",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bati")] = {
|
|
["name"] = "Bati 801",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "bati",
|
|
["price"] = 12000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-114291515",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bestiagts")] = {
|
|
["name"] = "Bestia GTS",
|
|
["brand"] = "Grotti",
|
|
["model"] = "bestiagts",
|
|
["price"] = 55000,
|
|
["category"] = "sports",
|
|
["hash"] = "1274868363",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bfinjection")] = {
|
|
["name"] = 'Bf Injection',
|
|
["brand"] = "Annis",
|
|
["price"] = 16000,
|
|
["category"] = "offroad",
|
|
["model"] = "bfinjection",
|
|
["hash"] = GetHashKey("bfinjection"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bifta")] = {
|
|
["name"] = 'Bifta',
|
|
["brand"] = "Annis",
|
|
["price"] = 12000,
|
|
["category"] = "offroad",
|
|
["model"] = "bifta",
|
|
["hash"] = GetHashKey("bifta"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bison")] = {
|
|
["name"] = "BeeJay XL",
|
|
["brand"] = "Karin",
|
|
["model"] = "bison",
|
|
["price"] = 45000,
|
|
["category"] = "vans",
|
|
["hash"] = "-16948145",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bjxl")] = {
|
|
["name"] = "BeeJay XL",
|
|
["brand"] = "Karin",
|
|
["model"] = "bjxl",
|
|
["price"] = 40000,
|
|
["category"] = "suvs",
|
|
["hash"] = "850565707",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blade")] = {
|
|
["name"] = "Blade",
|
|
["brand"] = "Vapid",
|
|
["model"] = "blade",
|
|
["price"] = 15000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1205801634",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blazer")] = {
|
|
["name"] = 'Blazer',
|
|
["price"] = 6500,
|
|
["category"] = "offroad",
|
|
["model"] = "blazer",
|
|
["hash"] = GetHashKey("blazer"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blazer4")] = {
|
|
["name"] = 'Blazer Sport',
|
|
["brand"] = "Annis",
|
|
["price"] = 8500,
|
|
["category"] = "offroad",
|
|
["model"] = "blazer4",
|
|
["hash"] = GetHashKey("blazer4"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blista")] = {
|
|
["name"] = "Blista",
|
|
["brand"] = "Dinka",
|
|
["model"] = "blista",
|
|
["price"] = 8000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-344943009",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("blista2")] = {
|
|
["name"] = "Blista Compact",
|
|
["brand"] = "Dinka",
|
|
["model"] = "blista2",
|
|
["price"] = 12000,
|
|
["category"] = "compacts",
|
|
["hash"] = "1039032026",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bobcatxl")] = {
|
|
["name"] = "Bobcat XL",
|
|
["brand"] = "Vapid",
|
|
["model"] = "bobcatxl",
|
|
["price"] = 23000,
|
|
["category"] = "vans",
|
|
["hash"] = "1069929536",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("brawler")] = {
|
|
["name"] = 'Brawler',
|
|
["brand"] = "Annis",
|
|
["price"] = 45000,
|
|
["category"] = "offroad",
|
|
["model"] = "brawler",
|
|
["hash"] = GetHashKey("brawler"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("brioso")] = {
|
|
["name"] = "Brioso R/A",
|
|
["brand"] = "Grotti",
|
|
["model"] = "brioso",
|
|
["price"] = 14500,
|
|
["category"] = "compacts",
|
|
["hash"] = "1549126457",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("btype")] = {
|
|
["name"] = "Roosevelt",
|
|
["brand"] = "Albany",
|
|
["model"] = "btype",
|
|
["price"] = 325000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "117401876",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("btype2")] = {
|
|
["name"] = "Franken Stange",
|
|
["brand"] = "Albany",
|
|
["model"] = "btype2",
|
|
["price"] = 350000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-831834716",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("btype3")] = {
|
|
["name"] = "Roosevelt Valor",
|
|
["brand"] = "Albany",
|
|
["model"] = "btype3",
|
|
["price"] = 375000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-602287871",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("buccaneer")] = {
|
|
["name"] = "Buccaneer",
|
|
["brand"] = "Albany",
|
|
["model"] = "buccaneer",
|
|
["price"] = 19500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-682211828",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("buccaneer2")] = {
|
|
["name"] = "Buccaneer Rider",
|
|
["brand"] = "Albany",
|
|
["model"] = "buccaneer2",
|
|
["price"] = 22500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1013450936",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("buffalo")] = {
|
|
["name"] = "Buffalo",
|
|
["brand"] = "Bravado",
|
|
["model"] = "buffalo",
|
|
["price"] = 32000,
|
|
["category"] = "sports",
|
|
["hash"] = "-304802106",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("buffalo2")] = {
|
|
["name"] = "Buffalo S",
|
|
["brand"] = "Bravado",
|
|
["model"] = "buffalo2",
|
|
["price"] = 39500,
|
|
["category"] = "sports",
|
|
["hash"] = "736902334",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("bullet")] = {
|
|
["name"] = "Bullet",
|
|
["brand"] = "Vapid",
|
|
["model"] = "bullet",
|
|
["price"] = 190000,
|
|
["category"] = "super",
|
|
["hash"] = "-1696146015",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("burrito3")] = {
|
|
["name"] = "Burrito",
|
|
["brand"] = "Declasse",
|
|
["model"] = "burrito3",
|
|
["price"] = 38500,
|
|
["category"] = "vans",
|
|
["hash"] = "-1743316013",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gburrito2")] = {
|
|
["name"] = "Burrito Custom",
|
|
["brand"] = "Declasse",
|
|
["model"] = "gburrito2",
|
|
["price"] = 65000,
|
|
["category"] = "vans",
|
|
["hash"] = "296357396",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("carbonizzare")] = {
|
|
["name"] = "Carbonizzare",
|
|
["brand"] = "Grotti",
|
|
["model"] = "carbonizzare",
|
|
["price"] = 219000,
|
|
["category"] = "sports",
|
|
["hash"] = "2072687711",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("carbonrs")] = {
|
|
["name"] = "Carbon RS",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "carbonrs",
|
|
["price"] = 14500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "11251904",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("casco")] = {
|
|
["name"] = "Casco",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "casco",
|
|
["price"] = 102000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "941800958",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cavalcade2")] = {
|
|
["name"] = "Cavalcade",
|
|
["brand"] = "Albany",
|
|
["model"] = "cavalcade2",
|
|
["price"] = 45000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-789894171",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cheetah")] = {
|
|
["name"] = "Cheetah",
|
|
["brand"] = "Grotti",
|
|
["model"] = "cheetah",
|
|
["price"] = 395000,
|
|
["category"] = "super",
|
|
["hash"] = "-1311154784",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cheetah2")] = {
|
|
["name"] = "Cheetah Classic",
|
|
["brand"] = "Grotti",
|
|
["model"] = "cheetah2",
|
|
["price"] = 220000,
|
|
["category"] = "sports",
|
|
["hash"] = "223240013",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("chimera")] = {
|
|
["name"] = "Chimera",
|
|
["brand"] = "Nagasaki",
|
|
["model"] = "chimera",
|
|
["price"] = 15000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "6774487",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("chino")] = {
|
|
["name"] = "Chino",
|
|
["brand"] = "Vapid",
|
|
["model"] = "chino",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = "349605904",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("chino2")] = {
|
|
["name"] = "Chino Luxe",
|
|
["brand"] = "Vapid",
|
|
["model"] = "chino2",
|
|
["price"] = 35000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1361687965",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cogcabrio")] = {
|
|
["name"] = "Cognoscenti Cabrio",
|
|
["brand"] = "Enus",
|
|
["model"] = "cogcabrio",
|
|
["price"] = 45500,
|
|
["category"] = "coupes",
|
|
["hash"] = "330661258",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cognoscenti")] = {
|
|
["name"] = "Cognoscenti",
|
|
["brand"] = "Enus",
|
|
["model"] = "cognoscenti",
|
|
["price"] = 40000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-2030171296",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("comet2")] = {
|
|
["name"] = "Comet",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet2",
|
|
["price"] = 142000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1045541610",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("comet3")] = {
|
|
["name"] = "Comet Retro Custom",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet3",
|
|
["price"] = 125000,
|
|
["category"] = "sports",
|
|
["hash"] = "-2022483795",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("comet5")] = {
|
|
["name"] = "Comet SR",
|
|
["brand"] = "Pfister",
|
|
["model"] = "comet5",
|
|
["price"] = 252000,
|
|
["category"] = "sports",
|
|
["hash"] = "661493923",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("coquette")] = {
|
|
["name"] = "Coquette",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette",
|
|
["price"] = 97000,
|
|
["category"] = "sports",
|
|
["hash"] = "108773431",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("coquette2")] = {
|
|
["name"] = "Coquette Classic",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette2",
|
|
["price"] = 125000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "1011753235",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("coquette3")] = {
|
|
["name"] = "Coquette BlackFin",
|
|
["brand"] = "Invetero",
|
|
["model"] = "coquette3",
|
|
["price"] = 45000,
|
|
["category"] = "muscle",
|
|
["hash"] = "784565758",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("cyclone")] = {
|
|
["name"] = "Cyclone",
|
|
["brand"] = "Coil",
|
|
["model"] = "cyclone",
|
|
["price"] = 1200000,
|
|
["category"] = "super",
|
|
["hash"] = "1392481335",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("daemon")] = {
|
|
["name"] = "Daemon",
|
|
["brand"] = "WMC",
|
|
["model"] = "daemon",
|
|
["price"] = 12500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "2006142190",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("defiler")] = {
|
|
["name"] = "Defiler",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "defiler",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "822018448",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dilettante")] = {
|
|
["name"] = "Dilettante",
|
|
["brand"] = "Karin",
|
|
["model"] = "dilettante",
|
|
["price"] = 13000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-1130810103",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dominator")] = {
|
|
["name"] = "Dominator",
|
|
["brand"] = "Vapid",
|
|
["model"] = "dominator",
|
|
["price"] = 53000,
|
|
["category"] = "muscle",
|
|
["hash"] = "80636076",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dubsta2")] = {
|
|
["name"] = "Dubsta Luxuary",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "dubsta2",
|
|
["price"] = 165000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-394074634",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dubsta3")] = {
|
|
["name"] = 'Bubsta 6x6',
|
|
["brand"] = "Annis",
|
|
["price"] = 120000,
|
|
["category"] = "offroad",
|
|
["model"] = "dubsta3",
|
|
["hash"] = GetHashKey("dubsta3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dukes")] = {
|
|
["name"] = "Dukes",
|
|
["brand"] = "Imponte",
|
|
["model"] = "dukes",
|
|
["price"] = 15000,
|
|
["category"] = "muscle",
|
|
["hash"] = "723973206",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("dune")] = {
|
|
["name"] = 'Dune Buggy',
|
|
["brand"] = "Annis",
|
|
["price"] = 8000,
|
|
["category"] = "offroad",
|
|
["model"] = "dune",
|
|
["hash"] = GetHashKey("dune"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("elegy")] = {
|
|
["name"] = "Elegy Retro Custom",
|
|
["brand"] = "Annis",
|
|
["model"] = "elegy",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = "196747873 ",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("elegy2")] = {
|
|
["name"] = "Elegy RH8",
|
|
["brand"] = "Annis",
|
|
["model"] = "elegy2",
|
|
["price"] = 68500,
|
|
["category"] = "sports",
|
|
["hash"] = "-566387422",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ellie")] = {
|
|
["name"] = "Ellie",
|
|
["brand"] = "Vapid",
|
|
["model"] = "ellie",
|
|
["price"] = 50000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1267543371",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("emperor")] = {
|
|
["name"] = "Emperor",
|
|
["brand"] = "Albany",
|
|
["model"] = "emperor",
|
|
["price"] = 14500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-685276541",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("entity2")] = {
|
|
["name"] = "Entity XXR",
|
|
["brand"] = "Överflöd",
|
|
["model"] = "entity2",
|
|
["price"] = 1532000,
|
|
["category"] = "super",
|
|
["hash"] = "-2120700196",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("entityxf")] = {
|
|
["name"] = "Entity XF",
|
|
["brand"] = "Överflöd",
|
|
["model"] = "entityxf",
|
|
["price"] = 825000,
|
|
["category"] = "super",
|
|
["hash"] = "-1291952903",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("esskey")] = {
|
|
["name"] = "Esskey",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "esskey",
|
|
["price"] = 6000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "2035069708",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("exemplar")] = {
|
|
["name"] = "Exemplar",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "exemplar",
|
|
["price"] = 65000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-5153954",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("f620")] = {
|
|
["name"] = "F620",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "f620",
|
|
["price"] = 37500,
|
|
["category"] = "coupes",
|
|
["hash"] = "-591610296",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("faction")] = {
|
|
["name"] = "Faction",
|
|
["brand"] = "Willard",
|
|
["model"] = "faction",
|
|
["price"] = 20000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-2119578145",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("faction2")] = {
|
|
["name"] = "Faction Rider",
|
|
["brand"] = "Willard",
|
|
["model"] = "faction2",
|
|
["price"] = 22500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1790546981",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fagaloa")] = {
|
|
["name"] = "Fagaloa",
|
|
["price"] = 35000,
|
|
["category"] = "sportsclassics",
|
|
["model"] = "fagaloa",
|
|
["hash"] = GetHashKey("fagaloa"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("faggio")] = {
|
|
["name"] = "Faggio Sport",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "faggio",
|
|
["price"] = 750,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "55628203",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("faggio3")] = {
|
|
["name"] = "Faggio Mod",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "faggio3",
|
|
["price"] = 900,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-1289178744",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("felon")] = {
|
|
["name"] = "Felon",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "felon",
|
|
["price"] = 31000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-391594584",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("felon2")] = {
|
|
["name"] = "Felon GT",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "felon2",
|
|
["price"] = 37000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-89291282",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("feltzer2")] = {
|
|
["name"] = "Feltzer",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "feltzer2",
|
|
["price"] = 83500,
|
|
["category"] = "sports",
|
|
["hash"] = "-1995326987",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("feltzer3")] = {
|
|
["name"] = "Stirling GT",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "feltzer3",
|
|
["price"] = 195000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-1566741232",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("flashgt")] = {
|
|
["name"] = "Flash GT",
|
|
["brand"] = "Vapid",
|
|
["model"] = "flashgt",
|
|
["price"] = 111000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1259134696",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fmj")] = {
|
|
["name"] = "FMJ",
|
|
["brand"] = "Vapid",
|
|
["model"] = "fmj",
|
|
["price"] = 335000,
|
|
["category"] = "super",
|
|
["hash"] = "1426219628",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fq2")] = {
|
|
["name"] = "FQ2",
|
|
["brand"] = "Fathom",
|
|
["model"] = "fq2",
|
|
["price"] = 38000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1137532101",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fugitive")] = {
|
|
["name"] = "Fugitive",
|
|
["brand"] = "Cheval",
|
|
["model"] = "fugitive",
|
|
["price"] = 22500,
|
|
["category"] = "sedans",
|
|
["hash"] = "1909141499",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("furoregt")] = {
|
|
["name"] = "Furore GT",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "furoregt",
|
|
["price"] = 115000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1089039904",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("fusilade")] = {
|
|
["name"] = "Fusilade",
|
|
["brand"] = "Schyster",
|
|
["model"] = "fusilade",
|
|
["price"] = 50000,
|
|
["category"] = "sports",
|
|
["hash"] = "499169875",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("futo")] = {
|
|
["name"] = "Futo",
|
|
["brand"] = "Karin",
|
|
["model"] = "futo",
|
|
["price"] = 20000,
|
|
["category"] = "coupes",
|
|
["hash"] = "2016857647",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gauntlet")] = {
|
|
["name"] = "Gauntlet",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gauntlet",
|
|
["price"] = 39500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1800170043",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("glendale")] = {
|
|
["name"] = "Glendale",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "glendale",
|
|
["price"] = 11500,
|
|
["category"] = "sedans",
|
|
["hash"] = "75131841",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gp1")] = {
|
|
["name"] = "GP1",
|
|
["brand"] = "Progen",
|
|
["model"] = "gp1",
|
|
["price"] = 462000,
|
|
["category"] = "super",
|
|
["hash"] = "1234311532",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("granger")] = {
|
|
["name"] = "Granger",
|
|
["brand"] = "Declasse",
|
|
["model"] = "granger",
|
|
["price"] = 43500,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1775728740",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gresley")] = {
|
|
["name"] = "Gresley",
|
|
["brand"] = "Bravado",
|
|
["model"] = "gresley",
|
|
["price"] = 47000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1543762099",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("gt500")] = {
|
|
["name"] = "GT500",
|
|
["brand"] = "Grotti",
|
|
["model"] = "gt500",
|
|
["price"] = 255000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-2079788230",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("guardian")] = {
|
|
["name"] = 'Guardian',
|
|
["brand"] = "Annis",
|
|
["price"] = 45000,
|
|
["category"] = "offroad",
|
|
["model"] = "guardian",
|
|
["hash"] = GetHashKey("guardian"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("hakuchou")] = {
|
|
["name"] = "Hakuchou",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "hakuchou",
|
|
["price"] = 16000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "1265391242",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("hexer")] = {
|
|
["name"] = "Hexer",
|
|
["brand"] = "LCC",
|
|
["model"] = "hexer",
|
|
["price"] = 7500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "301427732",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("muscle")] = {
|
|
["name"] = "Hotknife",
|
|
["brand"] = "Vapid",
|
|
["model"] = "hotknife",
|
|
["price"] = 95000,
|
|
["category"] = "muscle",
|
|
["hash"] = "37348240",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("huntley")] = {
|
|
["name"] = "Huntley S",
|
|
["brand"] = "Enus",
|
|
["model"] = "huntley",
|
|
["price"] = 85000,
|
|
["category"] = "suvs",
|
|
["hash"] = "486987393",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("hustler")] = {
|
|
["name"] = "Hustler",
|
|
["brand"] = "Vapid",
|
|
["model"] = "hustler",
|
|
["price"] = 75500,
|
|
["category"] = "muscle",
|
|
["hash"] = "600450546",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("infernus")] = {
|
|
["name"] = "Infernus",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "infernus",
|
|
["price"] = 285000,
|
|
["category"] = "super",
|
|
["hash"] = "418536135",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("infernus2")] = {
|
|
["name"] = "Infernus Classic",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "infernus2",
|
|
["price"] = 200000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-1405937764",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("intruder")] = {
|
|
["name"] = "Intruder",
|
|
["brand"] = "Karin",
|
|
["model"] = "intruder",
|
|
["price"] = 15000,
|
|
["category"] = "sedans",
|
|
["hash"] = "886934177",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("issi2")] = {
|
|
["name"] = "Issi",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi2",
|
|
["price"] = 12000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-1177863319",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("issi3")] = {
|
|
["name"] = "Issi Classic",
|
|
["brand"] = "Weeny",
|
|
["model"] = "issi3",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = "931280609",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("italigtb")] = {
|
|
["name"] = "Itali GTB",
|
|
["brand"] = "Progen",
|
|
["model"] = "italigtb",
|
|
["price"] = 1200000,
|
|
["category"] = "super",
|
|
["hash"] = "-482719877",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("jackal")] = {
|
|
["name"] = "Jackal",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "jackal",
|
|
["price"] = 29000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-624529134",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("jester")] = {
|
|
["name"] = "Jester",
|
|
["brand"] = "Dinka",
|
|
["model"] = "jester",
|
|
["price"] = 265000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1297672541",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("jester3")] = {
|
|
["name"] = "Jester Classic",
|
|
["brand"] = "Dinka",
|
|
["model"] = "jester3",
|
|
["price"] = 70000,
|
|
["category"] = "sports",
|
|
["hash"] = "-214906006",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("khamelion")] = {
|
|
["name"] = "Khamelion",
|
|
["brand"] = "Hijak",
|
|
["model"] = "khamelion",
|
|
["price"] = 102000,
|
|
["category"] = "sports",
|
|
["hash"] = "544021352",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("kuruma")] = {
|
|
["name"] = "Kuruma",
|
|
["brand"] = "Karin",
|
|
["model"] = "kuruma",
|
|
["price"] = 59500,
|
|
["category"] = "sports",
|
|
["hash"] = "-1372848492",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("landstalker")] = {
|
|
["name"] = "Landstalker",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "landstalker",
|
|
["price"] = 27000,
|
|
["category"] = "suvs",
|
|
["hash"] = "1269098716",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("lynx")] = {
|
|
["name"] = "Lynx",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "lynx",
|
|
["price"] = 68500,
|
|
["category"] = "sports",
|
|
["hash"] = "482197771",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("mamba")] = {
|
|
["name"] = "Mamba",
|
|
["brand"] = "Declasse",
|
|
["model"] = "mamba",
|
|
["price"] = 86000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-1660945322",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("massacro")] = {
|
|
["name"] = "Massacro",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "massacro",
|
|
["price"] = 165000,
|
|
["category"] = "sports",
|
|
["hash"] = "-142942670",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("monroe")] = {
|
|
["name"] = "Monroe",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "monroe",
|
|
["price"] = 98500,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-433375717",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("moonbeam")] = {
|
|
["name"] = "Moonbeam",
|
|
["brand"] = "Declasse",
|
|
["model"] = "moonbeam",
|
|
["price"] = 29500,
|
|
["category"] = "vans",
|
|
["hash"] = "525509695",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("nemesis")] = {
|
|
["name"] = "Nemesis",
|
|
["brand"] = "Principe",
|
|
["model"] = "nemesis",
|
|
["price"] = 12000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-634879114",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("neon")] = {
|
|
["name"] = "Neon",
|
|
["brand"] = "Pfister",
|
|
["model"] = "neon",
|
|
["price"] = 185000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1848994066",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("nero")] = {
|
|
["name"] = "Nero",
|
|
["brand"] = "Truffade",
|
|
["model"] = "nero",
|
|
["price"] = 2352000,
|
|
["category"] = "super",
|
|
["hash"] = "1034187331",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("nightblade")] = {
|
|
["name"] = "Nightblade",
|
|
["brand"] = "WMC",
|
|
["model"] = "nightblade",
|
|
["price"] = 14500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-1606187161",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("nightshade")] = {
|
|
["name"] = "Nightshade",
|
|
["brand"] = "Imponte",
|
|
["model"] = "nightshade",
|
|
["price"] = 84000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1943285540",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ninef")] = {
|
|
["name"] = "9F",
|
|
["brand"] = "Obey",
|
|
["model"] = "ninef",
|
|
["price"] = 135000,
|
|
["category"] = "sports",
|
|
["hash"] = "1032823388",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ninef2")] = {
|
|
["name"] = "9F Cabrio",
|
|
["brand"] = "Obey",
|
|
["model"] = "ninef2",
|
|
["price"] = 142000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1461482751",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("omnis")] = {
|
|
["name"] = "omnis",
|
|
["brand"] = "Annis",
|
|
["model"] = "omnis",
|
|
["price"] = 120000,
|
|
["category"] = "sports",
|
|
["hash"] = GetHashKey("omnis"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("oracle")] = {
|
|
["name"] = "Oracle",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "oracle",
|
|
["price"] = 25000,
|
|
["category"] = "sedans",
|
|
["hash"] = GetHashKey("oracle"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("oracle2")] = {
|
|
["name"] = "Oracle XS",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "oracle2",
|
|
["price"] = 28000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-511601230",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("osiris")] = {
|
|
["name"] = "Osiris",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "osiris",
|
|
["price"] = 1400000,
|
|
["category"] = "super",
|
|
["hash"] = "1987142870",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("panto")] = {
|
|
["name"] = "Panto",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "panto",
|
|
["price"] = 8500,
|
|
["category"] = "compacts",
|
|
["hash"] = "-431692672",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("pariah")] = {
|
|
["name"] = "Pariah",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "pariah",
|
|
["price"] = 395000,
|
|
["category"] = "sports",
|
|
["hash"] = "867799010",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("patriot")] = {
|
|
["name"] = "Patriot",
|
|
["brand"] = "Mammoth",
|
|
["model"] = "patriot",
|
|
["price"] = 32000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-808457413",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("pcj")] = {
|
|
["name"] = "PCJ-600",
|
|
["brand"] = "Shitzu",
|
|
["model"] = "pcj",
|
|
["price"] = 13500,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-909201658",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("penetrator")] = {
|
|
["name"] = "Penetrator",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "penetrator",
|
|
["price"] = 567000,
|
|
["category"] = "super",
|
|
["hash"] = "-1758137366",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("pfister811")] = {
|
|
["name"] = "811",
|
|
["brand"] = "Pfister",
|
|
["model"] = "pfister811",
|
|
["price"] = 583000,
|
|
["category"] = "super",
|
|
["hash"] = "-1829802492",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("phoenix")] = {
|
|
["name"] = "Phoenix",
|
|
["brand"] = "Imponte",
|
|
["model"] = "phoenix",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-2095439403",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("picador")] = {
|
|
["name"] = "Picador",
|
|
["brand"] = "Cheval",
|
|
["model"] = "picador",
|
|
["price"] = 18000,
|
|
["category"] = "muscle",
|
|
["hash"] = "1507916787",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("pigalle")] = {
|
|
["name"] = "Pigalle",
|
|
["brand"] = "Lampadati",
|
|
["model"] = "pigalle",
|
|
["price"] = 135000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "1078682497",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("prairie")] = {
|
|
["name"] = "Prairie",
|
|
["brand"] = "Bollokan",
|
|
["model"] = "prairie",
|
|
["price"] = 15000,
|
|
["category"] = "compacts",
|
|
["hash"] = "-1450650718",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("premier")] = {
|
|
["name"] = "Premier",
|
|
["brand"] = "Declasse",
|
|
["model"] = "premier",
|
|
["price"] = 16500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1883869285",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("primo2")] = {
|
|
["name"] = "Primo Custom",
|
|
["brand"] = "Albany",
|
|
["model"] = "primo2",
|
|
["price"] = 14500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-2040426790",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("prototipo")] = {
|
|
["name"] = "X80 Proto",
|
|
["brand"] = "Grotti",
|
|
["model"] = "prototipo",
|
|
["price"] = 1430000,
|
|
["category"] = "super",
|
|
["hash"] = "2123327359",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("radi")] = {
|
|
["name"] = "Radius",
|
|
["brand"] = "Vapid",
|
|
["model"] = "radi",
|
|
["price"] = 24000,
|
|
["category"] = "suvs",
|
|
["hash"] = "-1651067813",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("raiden")] = {
|
|
["name"] = "Raiden",
|
|
["brand"] = "Coil",
|
|
["model"] = "raiden",
|
|
["price"] = 150000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1529242755",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rapidgt")] = {
|
|
["name"] = "Rapid GT",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "rapidgt",
|
|
["price"] = 60000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1934452204",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rapidgt2")] = {
|
|
["name"] = "Rapid GT Convertible",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "rapidgt2",
|
|
["price"] = 65000,
|
|
["category"] = "sports",
|
|
["hash"] = "1737773231",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rapidgt3")] = {
|
|
["name"] = "Rapid GT",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "rapidgt3",
|
|
["price"] = 445000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "2049897956",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("reaper")] = {
|
|
["name"] = "Reaper",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "reaper",
|
|
["price"] = 365000,
|
|
["category"] = "super",
|
|
["hash"] = "234062309",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rebel2")] = {
|
|
["name"] = 'Rebel',
|
|
["brand"] = "Annis",
|
|
["model"] = "rebel2",
|
|
["price"] = 35000,
|
|
["category"] = "offroad",
|
|
["hash"] = GetHashKey("rebel2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("regina")] = {
|
|
["name"] = "Regina",
|
|
["brand"] = "Dundreary",
|
|
["model"] = "regina",
|
|
["price"] = 10000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-14495224",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("revolter")] = {
|
|
["name"] = "Revolter",
|
|
["brand"] = "Ubermacht",
|
|
["model"] = "revolter",
|
|
["price"] = 195000,
|
|
["category"] = "sports",
|
|
["hash"] = "-410205223",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rhapsody")] = {
|
|
["name"] = "Rhapsody",
|
|
["brand"] = "Declasse",
|
|
["model"] = "rhapsody",
|
|
["price"] = 10000,
|
|
["category"] = "compacts",
|
|
["hash"] = "841808271",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rocoto")] = {
|
|
["name"] = "Rocoto",
|
|
["brand"] = "Obey",
|
|
["model"] = "rocoto",
|
|
["price"] = 48500,
|
|
["category"] = "suvs",
|
|
["hash"] = "2136773105",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ruffian")] = {
|
|
["name"] = "Ruffian",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "ruffian",
|
|
["price"] = 14000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "-893578776",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("rumpo")] = {
|
|
["name"] = "Rumpo",
|
|
["brand"] = "Bravado",
|
|
["model"] = "rumpo",
|
|
["price"] = 30000,
|
|
["category"] = "vans",
|
|
["hash"] = "1162065741",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ruston")] = {
|
|
["name"] = "Ruston",
|
|
["brand"] = "Hijak",
|
|
["model"] = "ruston",
|
|
["price"] = 165000,
|
|
["category"] = "sports",
|
|
["hash"] = "719660200",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sabregt")] = {
|
|
["name"] = "Sabre Turbo",
|
|
["brand"] = "Declasse",
|
|
["model"] = "sabregt",
|
|
["price"] = 25000,
|
|
["category"] = "muscle",
|
|
["hash"] = "-1685021548",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sabregt2")] = {
|
|
["name"] = "Sabre GT",
|
|
["brand"] = "Declasse",
|
|
["model"] = "sabregt2",
|
|
["price"] = 29500,
|
|
["category"] = "muscle",
|
|
["hash"] = "223258115",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sandking")] = {
|
|
["name"] = 'Sandking',
|
|
["brand"] = "Annis",
|
|
["price"] = 55000,
|
|
["category"] = "offroad",
|
|
["model"] = "sandking",
|
|
["hash"] = GetHashKey("sandking"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sc1")] = {
|
|
["name"] = "SC1",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "sc1",
|
|
["price"] = 750000,
|
|
["category"] = "super",
|
|
["hash"] = "1352136073",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("schafter2")] = {
|
|
["name"] = "Schafter",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schafter2",
|
|
["price"] = 32000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1255452397",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("schafter3")] = {
|
|
["name"] = "Schafter V12",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "schafter3",
|
|
["price"] = 69000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1485523546",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("seminole")] = {
|
|
["name"] = "Seminole",
|
|
["brand"] = "Canis",
|
|
["model"] = "seminole",
|
|
["price"] = 29500,
|
|
["category"] = "suvs",
|
|
["hash"] = "1221512915",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sentinel")] = {
|
|
["name"] = "Sentinel",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "sentinel",
|
|
["price"] = 30000,
|
|
["category"] = "coupes",
|
|
["hash"] = "1349725314",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sentinel2")] = {
|
|
["name"] = "Sentinel XS",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "sentinel2",
|
|
["price"] = 36500,
|
|
["category"] = "coupes",
|
|
["hash"] = "873639469",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sentinel3")] = {
|
|
["name"] = "Sentinel Classic",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "sentinel3",
|
|
["price"] = 40000,
|
|
["category"] = "coupes",
|
|
["hash"] = GetHashKey("sentinel3"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("seven70")] = {
|
|
["name"] = "Seven-70",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "seven70",
|
|
["price"] = 85000,
|
|
["category"] = "sports",
|
|
["hash"] = "-1757836725",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("slamvan3")] = {
|
|
["name"] = "Slam Van Custom",
|
|
["brand"] = "Vapid",
|
|
["model"] = "slamvan3",
|
|
["price"] = 35000,
|
|
["category"] = "muscle",
|
|
["hash"] = "1119641113",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sovereign")] = {
|
|
["name"] = "Sovereign",
|
|
["brand"] = "WMC",
|
|
["model"] = "sovereign",
|
|
["price"] = 27000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "743478836",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("specter")] = {
|
|
["name"] = "Specter",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "specter",
|
|
["price"] = 155000,
|
|
["category"] = "sports",
|
|
["hash"] = "1886268224",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("specter2")] = {
|
|
["name"] = "Specter Custom",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "specter2",
|
|
["price"] = 178000,
|
|
["category"] = "sports",
|
|
["hash"] = "1074745671",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stafford")] = {
|
|
["name"] = "Stafford",
|
|
["price"] = 45000,
|
|
["category"] = "sedans",
|
|
["model"] = "stafford",
|
|
["hash"] = GetHashKey("stafford"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stalion")] = {
|
|
["name"] = "Stallion",
|
|
["brand"] = "Declasse",
|
|
["model"] = "stalion",
|
|
["price"] = 23500,
|
|
["category"] = "muscle",
|
|
["hash"] = "1923400478",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("stingergt")] = {
|
|
["name"] = "Stinger GT",
|
|
["brand"] = "Grotti",
|
|
["model"] = "stingergt",
|
|
["price"] = 184000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "-2098947590",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("streiter")] = {
|
|
["name"] = "Streiter",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "streiter",
|
|
["price"] = 98000,
|
|
["category"] = "sports",
|
|
["hash"] = "1741861769",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sultan")] = {
|
|
["name"] = "Sultan",
|
|
["brand"] = "Karin",
|
|
["model"] = "sultan",
|
|
["price"] = 56500,
|
|
["category"] = "sports",
|
|
["hash"] = "970598228",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("sultanrs")] = {
|
|
["name"] = "Sultan RS",
|
|
["brand"] = "Karin",
|
|
["model"] = "sultanrs",
|
|
["price"] = 76500,
|
|
["category"] = "sports",
|
|
["hash"] = "-295689028",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("superd")] = {
|
|
["name"] = "Super Diamond",
|
|
["brand"] = "Enus",
|
|
["model"] = "superd",
|
|
["price"] = 108000,
|
|
["category"] = "sedans",
|
|
["hash"] = "1123216662",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("surano")] = {
|
|
["name"] = "Surano",
|
|
["brand"] = " Benefactor",
|
|
["model"] = "surano",
|
|
["price"] = 89000,
|
|
["category"] = "sports",
|
|
["hash"] = "384071873",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("surge")] = {
|
|
["name"] = "Surge",
|
|
["brand"] = "Cheval",
|
|
["model"] = "surge",
|
|
["price"] = 28500,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1894894188",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("t20")] = {
|
|
["name"] = "T20",
|
|
["brand"] = "Progen",
|
|
["model"] = "t20",
|
|
["price"] = 1680000,
|
|
["category"] = "super",
|
|
["hash"] = "1663218586",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tailgater")] = {
|
|
["name"] = "Tailgater",
|
|
["brand"] = "Obey",
|
|
["model"] = "tailgater",
|
|
["price"] = 45000,
|
|
["category"] = "sedans",
|
|
["hash"] = "-1008861746",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("taipan")] = {
|
|
["name"] = "Taipan",
|
|
["brand"] = "Cheval",
|
|
["model"] = "taipan",
|
|
["price"] = 1650000,
|
|
["category"] = "super",
|
|
["hash"] = "-1134706562",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tampa")] = {
|
|
["name"] = "Tampa",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tampa",
|
|
["price"] = 27500,
|
|
["category"] = "muscle",
|
|
["hash"] = "972671128",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tampa2")] = {
|
|
["name"] = "Drift Tampa",
|
|
["brand"] = "Declasse",
|
|
["model"] = "tampa2",
|
|
["price"] = 50500,
|
|
["category"] = "muscle",
|
|
["hash"] = GetHashKey("tampa2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tempesta")] = {
|
|
["name"] = "Tempesta",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "tempesta",
|
|
["price"] = 400000,
|
|
["category"] = "super",
|
|
["hash"] = "272929391",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tezeract")] = {
|
|
["name"] = "Tezeract",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "tezeract",
|
|
["price"] = 2350000,
|
|
["category"] = "super",
|
|
["hash"] = "1031562256",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("thrust")] = {
|
|
["name"] = "Thrust",
|
|
["brand"] = "Dinka",
|
|
["model"] = "thrust",
|
|
["price"] = 16000,
|
|
["category"] = "motorcycles",
|
|
["hash"] = "1836027715",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("torero")] = {
|
|
["name"] = "Torero",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "torero",
|
|
["price"] = 285500,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "1504306544",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("trophytruck")] = {
|
|
["name"] = 'Trophy Truck',
|
|
["brand"] = "Annis",
|
|
["price"] = 60000,
|
|
["category"] = "offroad",
|
|
["model"] = "trophytruck",
|
|
["hash"] = GetHashKey("trophytruck"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("trophytruck2")] = {
|
|
["name"] = 'Trophy Truck Limited',
|
|
["brand"] = "Annis",
|
|
["price"] = 80000,
|
|
["category"] = "offroad",
|
|
["model"] = "trophytruck2",
|
|
["hash"] = GetHashKey("trophytruck2"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("turismor")] = {
|
|
["name"] = "Turismo R",
|
|
["brand"] = "Grotti",
|
|
["model"] = "turismor",
|
|
["price"] = 750000,
|
|
["category"] = "super",
|
|
["hash"] = "408192225",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("tyrant")] = {
|
|
["name"] = "Tyrant",
|
|
["brand"] = " Överflöd",
|
|
["model"] = "tyrant",
|
|
["price"] = 2100000,
|
|
["category"] = "super",
|
|
["hash"] = "-376434238",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vacca")] = {
|
|
["name"] = "Vacca",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "vacca",
|
|
["price"] = 255000,
|
|
["category"] = "super",
|
|
["hash"] = "338562499",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vagner")] = {
|
|
["name"] = "Vagner",
|
|
["brand"] = "Dewbauchee",
|
|
["model"] = "vagner",
|
|
["price"] = 1460000,
|
|
["category"] = "super",
|
|
["hash"] = "1939284556",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("verlierer2")] = {
|
|
["name"] = "Verlierer",
|
|
["brand"] = "Bravado",
|
|
["model"] = "verlierer2",
|
|
["price"] = 90500,
|
|
["category"] = "sports",
|
|
["hash"] = "1102544804",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("vigero")] = {
|
|
["name"] = "Vigero",
|
|
["brand"] = "Declasse",
|
|
["model"] = "vigero",
|
|
["price"] = 16500,
|
|
["category"] = "muscle",
|
|
["hash"] = "-825837129",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("virgo")] = {
|
|
["name"] = "Virgo",
|
|
["brand"] = "Albany",
|
|
["model"] = "virgo",
|
|
["price"] = 19700,
|
|
["category"] = "muscle",
|
|
["hash"] = "-498054846",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("visione")] = {
|
|
["name"] = "Visione",
|
|
["brand"] = "Grotti",
|
|
["model"] = "visione",
|
|
["price"] = 1750000,
|
|
["category"] = "sports",
|
|
["hash"] = "-998177792",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("voltic")] = {
|
|
["name"] = "Voltic",
|
|
["brand"] = "Coil",
|
|
["model"] = "voltic",
|
|
["price"] = 120000,
|
|
["category"] = "super",
|
|
["hash"] = "-1622444098",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("voodoo")] = {
|
|
["name"] = "Voodoo",
|
|
["brand"] = "Declasse",
|
|
["model"] = "voodoo",
|
|
["price"] = 21000,
|
|
["category"] = "muscle",
|
|
["hash"] = "523724515",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("washington")] = {
|
|
["name"] = "Washington",
|
|
["brand"] = "Albany",
|
|
["model"] = "washington",
|
|
["price"] = 19000,
|
|
["category"] = "sedans",
|
|
["hash"] = "1777363799",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("windsor")] = {
|
|
["name"] = "Windsor",
|
|
["brand"] = "Enus",
|
|
["model"] = "windsor",
|
|
["price"] = 325000,
|
|
["category"] = "coupes",
|
|
["hash"] = "1581459400",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("windsor2")] = {
|
|
["name"] = "Windsor Drop",
|
|
["brand"] = "Enus",
|
|
["model"] = "windsor2",
|
|
["price"] = 355000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-1930048799",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("xa21")] = {
|
|
["name"] = "XA-21",
|
|
["brand"] = "Ocelot",
|
|
["model"] = "xa21",
|
|
["price"] = 2150000,
|
|
["category"] = "super",
|
|
["hash"] = "917809321",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("xls")] = {
|
|
["name"] = "XLS",
|
|
["brand"] = "Benefactor",
|
|
["model"] = "xls",
|
|
["price"] = 75000,
|
|
["category"] = "suvs",
|
|
["hash"] = "1203490606",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("yosemite")] = {
|
|
["name"] = "Yosemite",
|
|
["brand"] = "Declasse",
|
|
["model"] = "yosemite",
|
|
["price"] = 19500,
|
|
["category"] = "muscle",
|
|
["hash"] = "1871995513",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("z190")] = {
|
|
["name"] = "190Z",
|
|
["brand"] = "Karin",
|
|
["model"] = "z190",
|
|
["price"] = 330000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "838982985",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("zentorno")] = {
|
|
["name"] = "Zentorno",
|
|
["brand"] = "Pegassi",
|
|
["model"] = "zentorno",
|
|
["price"] = 1250000,
|
|
["category"] = "super",
|
|
["hash"] = "-1403128555",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("zion")] = {
|
|
["name"] = "Zion",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "zion",
|
|
["price"] = 25500,
|
|
["category"] = "coupes",
|
|
["hash"] = "-1122289213",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("zion2")] = {
|
|
["name"] = "Zion Cabrio",
|
|
["brand"] = "Übermacht",
|
|
["model"] = "zion2",
|
|
["price"] = 27000,
|
|
["category"] = "coupes",
|
|
["hash"] = "-1193103848",
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("zombieb")] = {
|
|
["name"] = "Zombie Chopper",
|
|
["brand"] = "Western",
|
|
["price"] = 17000,
|
|
["category"] = "motorcycles",
|
|
["model"] = "zombieb",
|
|
["hash"] = GetHashKey("zombieb"),
|
|
["shop"] = "pdm",
|
|
},
|
|
[GetHashKey("ztype")] = {
|
|
["name"] = "Z-Type",
|
|
["brand"] = "Truffade",
|
|
["model"] = "ztype",
|
|
["price"] = 2500000,
|
|
["category"] = "sportsclassics",
|
|
["hash"] = "758895617",
|
|
["shop"] = "pdm",
|
|
},
|
|
}
|