diff --git a/resources/[inventory]/cs_shops/config/config.lua b/resources/[inventory]/cs_shops/config/config.lua index 3c1304974..abf3d7b75 100644 --- a/resources/[inventory]/cs_shops/config/config.lua +++ b/resources/[inventory]/cs_shops/config/config.lua @@ -307,7 +307,7 @@ CodeStudio.Products = { }, ['normal'] = { - categoryName = "Gemischtwaren", + categoryName = "General", categoryLogo = "fa-shopping-basket", items = { ['vape'] = { @@ -424,7 +424,12 @@ CodeStudio.Products = { itemPrice = 4, itemInfo = "", }, - + ['baking_soda'] = { + itemName = "Backpulver", + itemStock = 5000, + itemPrice = 4, + itemInfo = "", + }, } }, diff --git a/resources/[inventory]/cs_shops/ui/image/baking_soda.png b/resources/[inventory]/cs_shops/ui/image/baking_soda.png new file mode 100644 index 000000000..9837b0335 Binary files /dev/null and b/resources/[inventory]/cs_shops/ui/image/baking_soda.png differ diff --git a/resources/[inventory]/inventory_images/images/baking_soda.png b/resources/[inventory]/inventory_images/images/baking_soda.png new file mode 100644 index 000000000..9837b0335 Binary files /dev/null and b/resources/[inventory]/inventory_images/images/baking_soda.png differ diff --git a/resources/[inventory]/tgiann-inventory/items/items.lua b/resources/[inventory]/tgiann-inventory/items/items.lua index 430b4647a..b0faef48b 100644 --- a/resources/[inventory]/tgiann-inventory/items/items.lua +++ b/resources/[inventory]/tgiann-inventory/items/items.lua @@ -10610,6 +10610,26 @@ itemsData = { image = 'airsoft_bullets.png', name = 'airsoft_bullets', }, - - + baking_soda = { + shouldClose = true, + type = 'item', + description = '', + weight = 100, + label = 'Backpulver', + unique = true, + useable = false, + image = 'baking_soda.png', + name = 'baking_soda', + }, + mixed_coke = { + shouldClose = true, + type = 'item', + description = '', + weight = 100, + label = 'Tüte gestrecktes Kokain', + unique = true, + useable = true, + image = 'cocaine_baggy.png', + name = 'mixed_coke', + }, }