From 8fe4bf5dedda5841c25cbe88498cc2724d18a617 Mon Sep 17 00:00:00 2001 From: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Date: Wed, 13 May 2026 23:11:06 +0100 Subject: [PATCH] blind cane craft (#31962) --- code/game/objects/items/stacks/rods.dm | 1 + code/game/objects/items/weapons/misc_items.dm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/stacks/rods.dm b/code/game/objects/items/stacks/rods.dm index 942f1497f6c..e31dbf3efad 100644 --- a/code/game/objects/items/stacks/rods.dm +++ b/code/game/objects/items/stacks/rods.dm @@ -2,6 +2,7 @@ GLOBAL_LIST_INIT(rod_recipes, list ( new /datum/stack_recipe("grille", /obj/structure/grille, 2, time = 1 SECONDS, one_per_turf = TRUE, on_floor_or_lattice = TRUE), new /datum/stack_recipe("table frame", /obj/structure/table_frame, 2, time = 1 SECONDS, one_per_turf = TRUE, on_floor = TRUE), new /datum/stack_recipe("curtain rod", /obj/item/mounted/curtain/curtain_fixture, 2, 1, 20), + new /datum/stack_recipe("white cane", /obj/item/blindcane, 1, 1), null, new /datum/stack_recipe_list("railings...", list( new /datum/stack_recipe("railing", /obj/structure/railing, 3, time = 1 SECONDS, one_per_turf = TRUE, on_floor = TRUE), diff --git a/code/game/objects/items/weapons/misc_items.dm b/code/game/objects/items/weapons/misc_items.dm index 30903e266a1..ff3b5fd2a5b 100644 --- a/code/game/objects/items/weapons/misc_items.dm +++ b/code/game/objects/items/weapons/misc_items.dm @@ -31,7 +31,7 @@ flags = CONDUCT force = 5.0 throwforce = 7.0 - materials = list(MAT_METAL=50) + materials = list(MAT_METAL = 2000) attack_verb = list("bludgeoned", "whacked", "disciplined", "thrashed", "Vaudevilled") /obj/item/cane/get_crutch_efficiency() @@ -48,7 +48,7 @@ force = 5 throwforce = 7 w_class = WEIGHT_CLASS_SMALL // Canes can fold up to fit in bags or pockets - materials = list(MAT_METAL = 50) + materials = list(MAT_METAL = 1000) attack_verb = list("smacked", "whacked", "bumped", "struck") new_attack_chain = TRUE