Skip to content

Commit

Permalink
feat(es_extended/shared/config/weapons): add chop shop dlcs weapons
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenshiin13 committed Dec 31, 2024
1 parent f53bbfe commit d79a3c1
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions [core]/es_extended/locales/en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
24 changes: 24 additions & 0 deletions [core]/es_extended/shared/config/weapons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit d79a3c1

Please sign in to comment.