add sborka
This commit is contained in:
979
garrysmod/gamemodes/militaryrp/plugins/arsenal/sh_config.lua
Normal file
979
garrysmod/gamemodes/militaryrp/plugins/arsenal/sh_config.lua
Normal file
@@ -0,0 +1,979 @@
|
||||
-- проверка пениса
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
local PLUGIN = PLUGIN
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
PLUGIN.config = {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
currencyName = "Очки снабжения",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- Начальное снабжение для фракций
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
startSupply = {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[FACTION_RUSSIAN or 1] = 2000,
|
||||
[FACTION_UKRAINE or 2] = 2000,
|
||||
}, -- [FACTION_ID] = amount
|
||||
|
||||
-- Максиммальное снабжение
|
||||
maxSupply = 20000,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- Минимум, при котором арсенал считается закрытым
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
minSupply = 0,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- Cooldown for free weapons (supplyPrice == 0), per-player, seconds
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
freeWeaponCooldown = 3600, -- default 1 hour
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- Currency symbols per faction (client uses this to display money symbol)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
currencySymbol = {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[FACTION_RUSSIAN or 1] = "₽",
|
||||
[FACTION_UKRAINE or 2] = "$",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
weapons = {
|
||||
["tfa_inss_wpn_ak12"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 11000,
|
||||
["supplyPrice"] = 220,
|
||||
["name"] = "AK-12"
|
||||
},
|
||||
["tacrp_mr96"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 1,
|
||||
["name"] = "MR-96"
|
||||
},
|
||||
["tacrp_ak_ak74u"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 3000,
|
||||
["supplyPrice"] = 50,
|
||||
["name"] = "AKС-74У"
|
||||
},
|
||||
["tacrp_io_glock18"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "Glock 18C"
|
||||
},
|
||||
["tacrp_ks23"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "КС-23"
|
||||
},
|
||||
["tacrp_as50"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 20000,
|
||||
["supplyPrice"] = 1000,
|
||||
["name"] = "AS50"
|
||||
},
|
||||
["weapon_lvsrepair"] = {
|
||||
["category"] = "tool1",
|
||||
["moneyPrice"] = 100,
|
||||
["supplyPrice"] = 10,
|
||||
["name"] = "Сварка"
|
||||
},
|
||||
["tacrp_io_trg42"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 450,
|
||||
["name"] = "Sako TRG-42"
|
||||
},
|
||||
["tacrp_sd_dual_degala"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 1,
|
||||
["name"] = "Двойные Deagle"
|
||||
},
|
||||
["weapon_cigarette_camel"] = {
|
||||
["category"] = "tool1",
|
||||
["moneyPrice"] = 100,
|
||||
["supplyPrice"] = 10,
|
||||
["name"] = "Сигаретка"
|
||||
},
|
||||
["tacrp_io_sg550"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "SIG SG 550"
|
||||
},
|
||||
["tacrp_io_rpk"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 150,
|
||||
["name"] = "РПК-74"
|
||||
},
|
||||
["tacrp_uzi"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "UZI"
|
||||
},
|
||||
["parachute_swep"] = {
|
||||
["category"] = "tool4",
|
||||
["moneyPrice"] = 150,
|
||||
["supplyPrice"] = 10,
|
||||
["name"] = "Парашют"
|
||||
},
|
||||
["tacrp_hk417"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "HK 417"
|
||||
},
|
||||
["tacrp_sd_bizon"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "ПП-19 Бизон"
|
||||
},
|
||||
["weapon_sw_at4"] = {
|
||||
["moneyPrice"] = 4500,
|
||||
["supplyPrice"] = 450,
|
||||
["maxCount"] = 1,
|
||||
["ammoType"] = "rpg_round",
|
||||
["category"] = "heavy",
|
||||
["maxAmmo"] = 1,
|
||||
["name"] = "AT4"
|
||||
},
|
||||
["fas2_ifak"] = {
|
||||
["category"] = "tool7",
|
||||
["moneyPrice"] = 500,
|
||||
["supplyPrice"] = 50,
|
||||
["name"] = "Аптечка"
|
||||
},
|
||||
["bandage"] = {
|
||||
["category"] = "tool7",
|
||||
["moneyPrice"] = 500,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "Бинт"
|
||||
},
|
||||
["tacrp_io_saiga"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "Сайга-12К"
|
||||
},
|
||||
["tacrp_nade_frag"] = {
|
||||
["category"] = "grenade",
|
||||
["moneyPrice"] = 300,
|
||||
["supplyPrice"] = 30,
|
||||
["name"] = "Осколочная граната"
|
||||
},
|
||||
["tacrp_g36k"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "G36K"
|
||||
},
|
||||
["tfa_inss_wpn_l1a1"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 240,
|
||||
["name"] = "L1A1"
|
||||
},
|
||||
["bodycam_tablet"] = {
|
||||
["category"] = "tool3",
|
||||
["moneyPrice"] = 500,
|
||||
["supplyPrice"] = 50,
|
||||
["name"] = "Боди-камера"
|
||||
},
|
||||
["gmod_camera"] = {
|
||||
["category"] = "tool3",
|
||||
["moneyPrice"] = 50,
|
||||
["supplyPrice"] = 10,
|
||||
["name"] = "Камера"
|
||||
},
|
||||
["admin_defib"] = {
|
||||
["category"] = "tool7",
|
||||
["moneyPrice"] = 8000,
|
||||
["supplyPrice"] = 5000,
|
||||
["name"] = "Дефибриллятор"
|
||||
},
|
||||
["tacrp_sg551"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 20000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "SG 551"
|
||||
},
|
||||
["tacrp_knife"] = {
|
||||
["category"] = "melee",
|
||||
["moneyPrice"] = 50,
|
||||
["supplyPrice"] = 0,
|
||||
["name"] = "Нож"
|
||||
},
|
||||
["guitar"] = {
|
||||
["category"] = "tool3",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 10,
|
||||
["name"] = "Гитара"
|
||||
},
|
||||
["v92_bf2_medikit"] = {
|
||||
["category"] = "tool9",
|
||||
["moneyPrice"] = 1500,
|
||||
["supplyPrice"] = 150,
|
||||
["name"] = "Аптечка"
|
||||
},
|
||||
["weapon_sw_9k38"] = {
|
||||
["category"] = "heavy",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 500,
|
||||
["name"] = "9K38"
|
||||
},
|
||||
["tacrp_mp7"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "MP7"
|
||||
},
|
||||
["weapon_lvsspikestrip"] = {
|
||||
["category"] = "tool2",
|
||||
["moneyPrice"] = 100,
|
||||
["supplyPrice"] = 10,
|
||||
["name"] = "Шипы"
|
||||
},
|
||||
["tacrp_p250"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 1,
|
||||
["name"] = "P250"
|
||||
},
|
||||
["tacrp_m4"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "HK416"
|
||||
},
|
||||
["tfa_inss_wpn_m16a4"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 240,
|
||||
["name"] = "M16A4"
|
||||
},
|
||||
["tacrp_ak_svd"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 450,
|
||||
["name"] = "СВД"
|
||||
},
|
||||
["tacrp_io_xm8lmg"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "ХМ8 LMG"
|
||||
},
|
||||
["tacrp_mg4"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 300,
|
||||
["name"] = "HK MG4"
|
||||
},
|
||||
["tacrp_io_degala"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 1,
|
||||
["name"] = "Desert Eagle"
|
||||
},
|
||||
["tacrp_mp5"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "MP5A3"
|
||||
},
|
||||
["special_bandage"] = {
|
||||
["category"] = "tool8",
|
||||
["moneyPrice"] = 1000,
|
||||
["supplyPrice"] = 500,
|
||||
["name"] = "Шина от переломов"
|
||||
},
|
||||
["tacrp_ak_aek971"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "АЕК-971"
|
||||
},
|
||||
["tacrp_ak_ak12"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 11000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "АК-12"
|
||||
},
|
||||
["weapon_sw_rpg26"] = {
|
||||
["moneyPrice"] = 4500,
|
||||
["supplyPrice"] = 450,
|
||||
["maxCount"] = 1,
|
||||
["ammoType"] = "rpg_round",
|
||||
["category"] = "heavy",
|
||||
["maxAmmo"] = 1,
|
||||
["name"] = "РПГ-26"
|
||||
},
|
||||
["tacrp_spr"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "M700"
|
||||
},
|
||||
["tacrp_ex_m4a1"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 300,
|
||||
["name"] = "М4А1"
|
||||
},
|
||||
["tfa_new_inss_mk18"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 240,
|
||||
["name"] = "MK18"
|
||||
},
|
||||
["tacrp_io_fiveseven"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 1,
|
||||
["name"] = "FiveSeven"
|
||||
},
|
||||
["engineertoolmines"] = {
|
||||
["category"] = "tool5",
|
||||
["moneyPrice"] = 50000,
|
||||
["supplyPrice"] = 1000,
|
||||
["name"] = "Мины"
|
||||
},
|
||||
["tacrp_pdw"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 3000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "KAC PDW"
|
||||
},
|
||||
["tacrp_ak_an94"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "АН-94"
|
||||
},
|
||||
["weapon_r_handcuffs"] = {
|
||||
["category"] = "tool8",
|
||||
["moneyPrice"] = 1000,
|
||||
["supplyPrice"] = 10,
|
||||
["name"] = "Наручники"
|
||||
},
|
||||
["tfa_inss_wpn_fn_fal"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 240,
|
||||
["name"] = "FN FAL"
|
||||
},
|
||||
["weapon_rope_knife"] = {
|
||||
["category"] = "tool6",
|
||||
["moneyPrice"] = 50000,
|
||||
["supplyPrice"] = 500,
|
||||
["name"] = "Крюк кошка"
|
||||
},
|
||||
["tacrp_io_sg550r"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 300,
|
||||
["name"] = "SG-550R"
|
||||
},
|
||||
["weapon_sw_fim92"] = {
|
||||
["category"] = "heavy",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 500,
|
||||
["name"] = "FIM-92"
|
||||
},
|
||||
["tacrp_sd_groza"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "ОЦ-14"
|
||||
},
|
||||
["tacrp_ifak"] = {
|
||||
["category"] = "tool7",
|
||||
["moneyPrice"] = 500,
|
||||
["supplyPrice"] = 50,
|
||||
["name"] = "Аптечка IFAK"
|
||||
},
|
||||
["tacrp_aug"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 250,
|
||||
["name"] = "AUG"
|
||||
},
|
||||
["weapon_sw_panzerfaust3"] = {
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 500,
|
||||
["maxCount"] = 1,
|
||||
["ammoType"] = "PanzerFaust3 Rocket",
|
||||
["category"] = "heavy",
|
||||
["maxAmmo"] = 1,
|
||||
["name"] = "Панцерфауст 3"
|
||||
},
|
||||
["tacrp_io_scarh"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "FN SCAR"
|
||||
},
|
||||
["tacrp_io_xm8car"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 250,
|
||||
["name"] = "XM8"
|
||||
},
|
||||
["tacrp_pa_makarov"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 1,
|
||||
["name"] = "ПМ"
|
||||
},
|
||||
["tacrp_bekas"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "Bekas"
|
||||
},
|
||||
["weapon_cuff_elastic"] = {
|
||||
["category"] = "tool8",
|
||||
["moneyPrice"] = 300,
|
||||
["supplyPrice"] = 20,
|
||||
["name"] = "Наручники"
|
||||
},
|
||||
["tacrp_ex_hecate"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 17000,
|
||||
["supplyPrice"] = 300,
|
||||
["name"] = "PGM Hecate"
|
||||
},
|
||||
["tacrp_ex_glock"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 20,
|
||||
["name"] = "Glock"
|
||||
},
|
||||
["tfa_ins2_aks_r"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 11000,
|
||||
["supplyPrice"] = 220,
|
||||
["name"] = "AKS-74U"
|
||||
},
|
||||
["tacrp_ak_ak74"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 50,
|
||||
["name"] = "АК-74"
|
||||
},
|
||||
["tacrp_io_sl8"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 9000,
|
||||
["supplyPrice"] = 180,
|
||||
["name"] = "SL8"
|
||||
},
|
||||
["tfa_ins2_moe_akm"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 12000,
|
||||
["supplyPrice"] = 240,
|
||||
["name"] = "AKM MOE"
|
||||
},
|
||||
["tacrp_io_val"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "АС ВАЛ"
|
||||
},
|
||||
["tacrp_skorpion"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "VZ-61"
|
||||
},
|
||||
["swep_drone_grenade"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 1000,
|
||||
["name"] = "Дрон с гранатой"
|
||||
},
|
||||
["tacrp_sd_pkm"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 300,
|
||||
["name"] = "ПКМ"
|
||||
},
|
||||
["weapon_sw_rpg28"] = {
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 500,
|
||||
["maxCount"] = 1,
|
||||
["ammoType"] = "rpg_round",
|
||||
["category"] = "heavy",
|
||||
["maxAmmo"] = 1,
|
||||
["name"] = "РПГ-28"
|
||||
},
|
||||
["tacrp_nade_flashbang"] = {
|
||||
["category"] = "grenade1",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 20,
|
||||
["name"] = "Светошумовая граната"
|
||||
},
|
||||
["v92_bf2_ammokit"] = {
|
||||
["category"] = "tool3",
|
||||
["moneyPrice"] = 1500,
|
||||
["supplyPrice"] = 150,
|
||||
["name"] = "Ящик с патронами"
|
||||
},
|
||||
["tacrp_io_vss"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "ВСС Винторез"
|
||||
},
|
||||
["tacrp_io_p226"] = {
|
||||
["category"] = "secondary",
|
||||
["moneyPrice"] = 200,
|
||||
["supplyPrice"] = 1,
|
||||
["name"] = "P226"
|
||||
},
|
||||
["tfa_blast_ksvk_cqb"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 15000,
|
||||
["supplyPrice"] = 300,
|
||||
["name"] = "KSvK 12.7"
|
||||
},
|
||||
["tacrp_io_k98"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 5000,
|
||||
["supplyPrice"] = 100,
|
||||
["name"] = "KAR98K"
|
||||
},
|
||||
["tacrp_superv"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 9000,
|
||||
["supplyPrice"] = 180,
|
||||
["name"] = "KRISS Vector"
|
||||
},
|
||||
["tacrp_nade_smoke"] = {
|
||||
["category"] = "grenade2",
|
||||
["moneyPrice"] = 150,
|
||||
["supplyPrice"] = 15,
|
||||
["name"] = "Дымовая граната"
|
||||
},
|
||||
["tacrp_sd_aac_hb"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "AAC Honey badger"
|
||||
},
|
||||
["tacrp_pa_vykhlop"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 17000,
|
||||
["supplyPrice"] = 350,
|
||||
["name"] = "ВСК Выхлоп"
|
||||
},
|
||||
["tacrp_sd_g3"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 10000,
|
||||
["supplyPrice"] = 200,
|
||||
["name"] = "G3A3"
|
||||
},
|
||||
["tfa_ins2_warface_cheytac_m200"] = {
|
||||
["category"] = "primary",
|
||||
["moneyPrice"] = 17000,
|
||||
["supplyPrice"] = 340,
|
||||
["name"] = "Cheytac M200"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- ============================================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- DONATE WEAPONS (donate_only = true означает что доступно ТОЛЬКО через донат)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- Если donate_only НЕ указано или false, оружие может быть добавлено в spec/podr и будет платным
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- ============================================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- Патроны: тип -> {name, price, amount}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ammo = {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- ["rifle"] = { name = "Патроны для винтовки", price = 10, amount = 30 },
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- Броня (опционально)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
armor = {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- amount: how much armor will be set on the player after purchase
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- supplyPrice: cost in faction supply points (keeps naming consistent with weapons)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
["armor_light"] = { name = "Легкая броня", supplyPrice = 50, moneyPrice = 0, amount = 25 },
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
["armor_medium"] = { name = "Средняя броня", supplyPrice = 75, moneyPrice = 0, amount = 50 },
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
["armor_heavy"] = { name = "Тяжелая броня", supplyPrice = 150, moneyPrice = 0, amount = 100 },
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
wardrobeBlacklist = {},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
patchIndex = 15,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
patchMaterials = {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"models/texture_vsu_1amb/path",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"models/texture_vsu_1amb/path2",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"models/texture_vsu_1amb/path3"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
wardrobeAccess = {},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
wardrobeStats = {},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
wardrobeCHands = {}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user