Skip to content

Commit

Permalink
chore: created the new grilled salmon dish
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpredator committed Nov 26, 2024
1 parent 7634df4 commit f07bf28
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@ INSERT INTO `bpt_items` (`name`, `label`) VALUES
('WEAPON_COMBATSHOTGUN', 'WEAPON COMBATSHOTGUN'),
('ammo-shotgun', 'ammo shotgun'),
('salmon', 'Salmon'),
('fry_oil', 'Fry oil')
('fry_oil', 'Fry oil'),
('grilled_salmon', 'grilled salmon')
;
19 changes: 18 additions & 1 deletion server-data/resources/[bpt_addons]/bpt_crafting/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,22 @@ Config = {
Time = 60,
Ingredients = {
["salmon"] = 1,
["WEAPON_KNIFE"] = 1,
},
},

["grilled_salmon"] = {
Level = 0,
Category = "fisherman",
isGun = false,
Jobs = { "unicorn" },
JobGrades = {},
Amount = 2,
SuccessRate = 100,
requireBlueprint = false,
Time = 60,
Ingredients = {
["salmon_fillet"] = 1,
},
},

Expand Down Expand Up @@ -703,7 +719,8 @@ Config = {
coords = vector3(129.217590, -1283.802246, 29.263062),
jobs = { "unicorn" },
blip = false,
recipes = { "almondmilk", "fries", "bread_deer", "salmon_fillet" },
recipes = { "almondmilk", "fries", "salmon_fillet", "grilled_salmon" },
-- "bread_deer",
radius = 1.0,
},
{
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,6 @@ INSERT INTO `bpt_items` (`name`, `label`) VALUES
('WEAPON_COMBATSHOTGUN', 'Fucile a pompa da combattimento'),
('ammo-shotgun', 'Munizioni fucile a pompa'),
('salmon', 'Salmone'),
('fry_oil', 'olio per fritti')
('fry_oil', 'olio per fritti'),
('grilled_salmon', 'salmone grigliato')
;
12 changes: 12 additions & 0 deletions server-data/resources/[ox]/ox_inventory/data/items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,18 @@ return {
},
},

["grilled_salmon"] = {
label = "salmone grigliato",
weight = 140,
client = {
status = { hunger = 40000 },
anim = "eating",
prop = "burger",
usetime = 2500,
notification = "Stai mangiano del salmone grigliato",
},
},

["bread_deer"] = {
label = "panino con carne di cervo",
weight = 220,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f07bf28

Please sign in to comment.