diff --git a/code/game/machinery/vending_types.dm b/code/game/machinery/vending_types.dm index 34a5f8b6e31..eea30fca39f 100644 --- a/code/game/machinery/vending_types.dm +++ b/code/game/machinery/vending_types.dm @@ -542,16 +542,17 @@ /obj/item/weapon/material/kitchen/utensil/fork = 6, /obj/item/weapon/material/kitchen/utensil/knife = 6, /obj/item/weapon/material/kitchen/utensil/spoon = 6, - /obj/item/weapon/material/knife = 3, + /obj/item/weapon/material/knife = 2, + /obj/item/weapon/material/knife/butch = 2, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass = 8, /obj/item/clothing/suit/chef/classic = 2, /obj/item/weapon/material/kitchen/rollingpin = 2, /obj/item/weapon/reagent_containers/cooking_container/oven = 5, /obj/item/weapon/reagent_containers/cooking_container/fryer = 4, - /obj/item/weapon/storage/toolbox/lunchbox/nt = 6 + /obj/item/weapon/storage/toolbox/lunchbox/nt = 6, + /obj/item/weapon/reagent_containers/glass/beaker/bowl = 4 ) contraband = list( - /obj/item/weapon/material/knife/butch = 2, /obj/item/weapon/storage/toolbox/lunchbox/syndicate = 2 ) restock_items = 1 diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index 44c0face3a0..09f0296099f 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -176,6 +176,18 @@ possible_transfer_amounts = list(5,10,15,25,30,60,120) flags = OPENCONTAINER +/obj/item/weapon/reagent_containers/glass/beaker/bowl + name = "mixing bowl" + desc = "A large mixing bowl." + icon = 'icons/obj/kitchen.dmi' + icon_state = "mixingbowl" + matter = list(DEFAULT_WALL_MATERIAL = 300) + volume = 180 + amount_per_transfer_from_this = 10 + possible_transfer_amounts = list(5,10,15,25,30,60,180) + flags = OPENCONTAINER + unacidable = 0 + /obj/item/weapon/reagent_containers/glass/beaker/noreact name = "cryostasis beaker" desc = "A cryostasis beaker that allows for chemical storage without reactions." diff --git a/html/changelogs/kitchen-balances-bport-LR001.yml b/html/changelogs/kitchen-balances-bport-LR001.yml new file mode 100644 index 00000000000..95dfc539883 --- /dev/null +++ b/html/changelogs/kitchen-balances-bport-LR001.yml @@ -0,0 +1,6 @@ +author: LordRaven001 +delete-after: True +changes: + - rscadd: "Ports mixing bowls from Baystation" + - tweak: "Removed butcher knives from the contraband section in the vendor, added them to the normal vendor." + - balance: "Balanced the Kitchen Vendor around 2 Chefs" \ No newline at end of file diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index b15419b07d8..9152866314b 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ