From 5db7dafc387e615539551f994df7bcff0259eb5f Mon Sep 17 00:00:00 2001 From: UmeFuu <35434208+UmeFuu@users.noreply.github.com> Date: Wed, 13 Feb 2019 00:16:17 -0300 Subject: [PATCH] Adds new circular cutter Needed for the new cookies recipe and maybe future recipes ----- Fixed, it didn't work before for some reason --- code/game/objects/items/weapons/kitchen.dm | 36 +++++++++++++--------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/code/game/objects/items/weapons/kitchen.dm b/code/game/objects/items/weapons/kitchen.dm index d4a53e8e8b2..a0810a0b96c 100644 --- a/code/game/objects/items/weapons/kitchen.dm +++ b/code/game/objects/items/weapons/kitchen.dm @@ -9,12 +9,16 @@ * Rolling Pins * Candy Moulds * Sushi Mat + * Circular cutter */ /obj/item/kitchen icon = 'icons/obj/kitchen.dmi' origin_tech = "materials=1" + + + /* * Utensils */ @@ -178,21 +182,7 @@ materials = list() origin_tech = "biotech=3;combat=2" attack_verb = list("shanked", "shivved") -/* - *cutter by Ume - */ - /obj/item/kitchen/cutter - name = "generic circular cutter" - desc = "A generic circular cutter for cookies and other things." - icon_state = "circular_cutter" - force = 5 - throwforce = 5 - throw_speed = 3 - throw_range = 3 - sharp = 1 - w_class = WEIGHT_CLASS_SMALL - attack_verb = list("bashed", "slashed", "pricked", "thrashed") /* * Rolling Pins @@ -278,4 +268,20 @@ throw_speed = 3 throw_range = 3 w_class = WEIGHT_CLASS_SMALL - attack_verb = list("rolled", "cracked", "battered", "thrashed") \ No newline at end of file + attack_verb = list("rolled", "cracked", "battered", "thrashed") + + + +/// circular cutter by Ume + +/obj/item/kitchen/cutter + name = "generic circular cutter" + desc = "A generic circular cutter for cookies and other things." + icon = 'icons/obj/kitchen.dmi' + icon_state = "circular_cutter" + force = 5 + throwforce = 5 + throw_speed = 3 + throw_range = 3 + w_class = WEIGHT_CLASS_SMALL + attack_verb = list("bashed", "slashed", "pricked", "thrashed") \ No newline at end of file