diff --git a/code/game/machinery/vendors/departmental_vendors.dm b/code/game/machinery/vendors/departmental_vendors.dm index cf2885665bf..ba03d05bc67 100644 --- a/code/game/machinery/vendors/departmental_vendors.dm +++ b/code/game/machinery/vendors/departmental_vendors.dm @@ -110,6 +110,8 @@ /obj/item/whetstone = 2, /obj/item/storage/box/papersack = 20, /obj/item/mixing_bowl = 10, + /obj/item/kitchen/knife/cheese = 2, + /obj/item/kitchen/knife/pizza_cutter = 2, /obj/item/kitchen/mould/bear = 1, /obj/item/kitchen/mould/worm = 1, /obj/item/kitchen/mould/bean = 1, diff --git a/code/game/objects/items/weapons/kitchen.dm b/code/game/objects/items/weapons/kitchen.dm index ab8529afb20..af6641c886f 100644 --- a/code/game/objects/items/weapons/kitchen.dm +++ b/code/game/objects/items/weapons/kitchen.dm @@ -225,6 +225,12 @@ icon_state = "knife-cheese" force = 3 +/obj/item/kitchen/knife/pizza_cutter + name = "pizza cutter" + desc = "A simple circular blade on a handle, used to cut pizza." + icon_state = "pizza_cutter" + force = 8 + /* * Rolling Pins */ diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 24160309477..e83043dd2f3 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -256,6 +256,22 @@ build_path = /obj/item/kitchen/knife category = list("initial","Dinnerware") +/datum/design/cheese_knife + name = "Cheese Knife" + id = "cheese_knife" + build_type = AUTOLATHE + materials = list(MAT_METAL = 4000) + build_path = /obj/item/kitchen/knife/cheese + category = list("initial","Dinnerware") + +/datum/design/pizza_cutter + name = "Pizza Cutter" + id = "pizza_cutter" + build_type = AUTOLATHE + materials = list(MAT_METAL = 10000) + build_path = /obj/item/kitchen/knife/pizza_cutter + category = list("initial","Dinnerware") + /datum/design/fork name = "Fork" id = "fork" diff --git a/code/modules/supply/supply_packs/pack_organic.dm b/code/modules/supply/supply_packs/pack_organic.dm index ca1fb83e288..78bd8766544 100644 --- a/code/modules/supply/supply_packs/pack_organic.dm +++ b/code/modules/supply/supply_packs/pack_organic.dm @@ -33,7 +33,8 @@ /obj/item/pizzabox/mushroom, /obj/item/pizzabox/pepperoni, /obj/item/pizzabox/vegetable, - /obj/item/pizzabox/hawaiian) + /obj/item/pizzabox/hawaiian, + /obj/item/kitchen/knife/pizza_cutter) cost = 500 containername = "Pizza crate" diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index cd23f4d6697..9a172e1a671 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ