diff --git a/resources/[inventory]/cs_shops/config/config.lua b/resources/[inventory]/cs_shops/config/config.lua index 7a021127e..bb99bd3e1 100644 --- a/resources/[inventory]/cs_shops/config/config.lua +++ b/resources/[inventory]/cs_shops/config/config.lua @@ -658,16 +658,21 @@ CodeStudio.Products = { ['pump'] = { itemName = "Akku Pumpe", itemStock = 150, - itemPrice = 600, + itemPrice = 200, itemInfo = "", }, ['fruitpicker'] = { itemName = "Obstpflücker", itemStock = 150, - itemPrice = 100, + itemPrice = 80, itemInfo = "", }, - + ['plastic_box'] = { + itemName = "Plastikbox", + itemStock = 150, + itemPrice = 100, + itemInfo = "", + }, } }, diff --git a/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua b/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua index c0f2c4e03..e1e9fadb7 100644 --- a/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua +++ b/resources/[inventory]/tgiann-inventory/configs/configItemStash.lua @@ -19,7 +19,7 @@ config.itemStash = { }, { item = "box", - maxweight = 100000, + maxweight = 50000, slots = 20, }, diff --git a/resources/[inventory]/tgiann-inventory/items/items.lua b/resources/[inventory]/tgiann-inventory/items/items.lua index 9f145a68c..0b9f87779 100644 --- a/resources/[inventory]/tgiann-inventory/items/items.lua +++ b/resources/[inventory]/tgiann-inventory/items/items.lua @@ -10174,7 +10174,7 @@ itemsData = { shouldClose = true, type = 'item', description = '', - weight = 1000, + weight = 10000, label = 'Ausrüstungs Tasche', unique = true, useable = true, @@ -10566,6 +10566,16 @@ itemsData = { image = 'bag_blue_death.png', name = 'bag_blue_death', }, - + plastic_box = { + shouldClose = true, + type = 'item', + description = '', + weight = 50000, + label = 'Plastikbox', + unique = true, + useable = false, + image = 'plastic_box.png', + name = 'plastic_box', + }, }