diff --git a/[core]/es_extended/locales/en.lua b/[core]/es_extended/locales/en.lua index 44d622930..95ff12848 100644 --- a/[core]/es_extended/locales/en.lua +++ b/[core]/es_extended/locales/en.lua @@ -211,6 +211,7 @@ Locales["en"] = { ["weapon_specialcarbine"] = "Special Carbine", ["weapon_specialcarbine_mk2"] = "Special Carbine MK2", ["weapon_heavyrifle"] = "Heavy Rifle", + ["weapon_battlerifle"] = "Battle Rifle", -- Sniper ["weapon_heavysniper"] = "Heavy Sniper", @@ -240,6 +241,11 @@ Locales["en"] = { ["weapon_pistolxm3"] = "Pistol8 x3m", ["weapon_railgunxm3"] = "Railgun", + -- Chop Shop DLC + ["weapon_snowlauncher"] = "Snow Launcher", + ["weapon_hackingdevice"] = "Hacking Device", + + -- Thrown ["weapon_ball"] = "Baseball", ["weapon_bzgas"] = "BZ Gas", diff --git a/[core]/es_extended/shared/config/weapons.lua b/[core]/es_extended/shared/config/weapons.lua index e9392f305..28d6adc92 100644 --- a/[core]/es_extended/shared/config/weapons.lua +++ b/[core]/es_extended/shared/config/weapons.lua @@ -1037,6 +1037,30 @@ Config.Weapons = { { name = "suppressor", label = TranslateCap("component_suppressor"), hash = `COMPONENT_AT_AR_SUPP_02` }, }, }, + { + name = "WEAPON_BATTLERIFLE", + label = TranslateCap("weapon_battlerifle"), + ammo = { label = TranslateCap("ammo_rounds"), hash = `AMMO_RIFLE` }, + tints = Config.DefaultWeaponTints, + components = { + { name = "clip_default", label = TranslateCap("component_clip_default"), hash = `COMPONENT_BATTLERIFLE_CLIP_01` }, + { name = "clip_extended", label = TranslateCap("component_clip_extended"), hash = `COMPONENT_BATTLERIFLE_CLIP_02` }, + { name = "suppressor", label = TranslateCap("component_suppressor"), hash = `COMPONENT_AT_AR_SUPP` }, + }, + }, + { + name = "WEAPON_SNOWLAUNCHER", + label = TranslateCap("weapon_snowlauncher"), + ammo = { label = TranslateCap("ammo_snowball"), hash = `AMMO_SNOWLAUNCHER` }, + tints = Config.DefaultWeaponTints, + components = {}, + }, + { + name = "WEAPON_HACKINGDEVICE", + label = TranslateCap("weapon_hackingdevice"), + tints = Config.DefaultWeaponTints, + components = {}, + }, { name = "WEAPON_PRECISIONRIFLE", label = TranslateCap("weapon_precisionrifle"),