Skip to content

Commit

Permalink
Adds Pizza cutters (ParadiseSS13#28490)
Browse files Browse the repository at this point in the history
  • Loading branch information
Contrabang authored Mar 1, 2025
1 parent 659aba3 commit b313faf
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 1 deletion.
2 changes: 2 additions & 0 deletions code/game/machinery/vendors/departmental_vendors.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 6 additions & 0 deletions code/game/objects/items/weapons/kitchen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
16 changes: 16 additions & 0 deletions code/modules/research/designs/autolathe_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion code/modules/supply/supply_packs/pack_organic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
Binary file modified icons/obj/kitchen.dmi
Binary file not shown.

0 comments on commit b313faf

Please sign in to comment.