diff --git a/server-data/resources/[bpt_addons]/bpt_crafting/bpt_crafting.sql b/server-data/resources/[bpt_addons]/bpt_crafting/bpt_crafting.sql index 13138254..f975598e 100644 --- a/server-data/resources/[bpt_addons]/bpt_crafting/bpt_crafting.sql +++ b/server-data/resources/[bpt_addons]/bpt_crafting/bpt_crafting.sql @@ -62,5 +62,7 @@ INSERT INTO `bpt_items` (`name`, `label`) VALUES ('armour', 'armour'), ('WEAPON_FLASHLIGHT', 'WEAPON FLASHLIGHT'), ('contract', 'Contract'), - ('at_suppressor_light', 'Suppressor') + ('at_suppressor_light', 'Suppressor'), + ('WEAPON_COMBATSHOTGUN', 'WEAPON COMBATSHOTGUN'), + ('ammo-shotgun', 'ammo shotgun') ; \ No newline at end of file diff --git a/server-data/resources/[bpt_addons]/bpt_crafting/config.lua b/server-data/resources/[bpt_addons]/bpt_crafting/config.lua index d99017ab..018468f7 100644 --- a/server-data/resources/[bpt_addons]/bpt_crafting/config.lua +++ b/server-data/resources/[bpt_addons]/bpt_crafting/config.lua @@ -372,6 +372,26 @@ Config = { ["hammer"] = 1, }, }, + + ["WEAPON_COMBATSHOTGUN"] = { + Level = 10, + Category = "ammu", + isGun = false, + Jobs = { "ammu" }, + JobGrades = {}, + Amount = 1, + SuccessRate = 100, + requireBlueprint = false, + Time = 180, + Ingredients = { + ["copper"] = 1, + ["iron"] = 5, + ["wood"] = 1, + ["steel"] = 10, + ["hammer"] = 1, + }, + }, + ["ammo-sniper"] = { Level = 10, Category = "ammunation", @@ -410,6 +430,25 @@ Config = { }, }, + ["ammo-shotgun"] = { + Level = 10, + Category = "ammunation", + isGun = false, + Jobs = { "ammu" }, + JobGrades = {}, + Amount = 10, + SuccessRate = 100, + requireBlueprint = false, + Time = 30, + Ingredients = { + ["copper"] = 1, + ["iron"] = 1, + ["gunpowder"] = 1, + ["gold"] = 1, + ["hammer"] = 1, + }, + }, + ["WEAPON_KNIFE"] = { Level = 10, Category = "accessory", @@ -647,6 +686,7 @@ Config = { "WEAPON_APPISTOL", "ammo-sniper", "ammo-9", + "ammo-shotgun", "WEAPON_KNIFE", "WEAPON_KNUCKLE", "WEAPON_NIGHTSTICK", @@ -654,6 +694,7 @@ Config = { "armour", "WEAPON_FLASHLIGHT", "at_suppressor_light", + "WEAPON_COMBATSHOTGUN", }, radius = 1.0, }, diff --git a/server-data/resources/[bpt_addons]/bpt_crafting/localization/bpt_crafting_it.sql b/server-data/resources/[bpt_addons]/bpt_crafting/localization/bpt_crafting_it.sql index 2f84e1eb..f04db0b7 100644 --- a/server-data/resources/[bpt_addons]/bpt_crafting/localization/bpt_crafting_it.sql +++ b/server-data/resources/[bpt_addons]/bpt_crafting/localization/bpt_crafting_it.sql @@ -62,5 +62,7 @@ INSERT INTO `bpt_items` (`name`, `label`) VALUES ('armour', 'giubbotto antiproiettile'), ('WEAPON_FLASHLIGHT', 'Torcia'), ('contract', 'Contratto per auto'), - ('at_suppressor_light', 'Silenziatore') + ('at_suppressor_light', 'Silenziatore'), + ('WEAPON_COMBATSHOTGUN', 'Fucile a pompa da combattimento'), + ('ammo-shotgun', 'Munizioni fucile a pompa') ; \ No newline at end of file