From e76ab8d4ac009b014429e3ff907eace26d0fb2a0 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Fri, 8 Nov 2024 18:13:13 +0100 Subject: [PATCH] Moved the big slapping parts from the misc section to weapons (#87637) --- code/modules/cargo/markets/market_items/misc.dm | 9 --------- code/modules/cargo/markets/market_items/weapons.dm | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/code/modules/cargo/markets/market_items/misc.dm b/code/modules/cargo/markets/market_items/misc.dm index b0ea89485801c..c53076f737cb6 100644 --- a/code/modules/cargo/markets/market_items/misc.dm +++ b/code/modules/cargo/markets/market_items/misc.dm @@ -134,12 +134,3 @@ stock_min = 3 stock_max = 8 availability_prob = 90 - -/datum/market_item/misc/giant_wrench_parts - name = "Big Slappy parts" - desc = "Cheap illegal Big Slappy parts. The fastest and statistically most dangerous wrench." - item = /obj/item/weaponcrafting/giant_wrench - price_min = CARGO_CRATE_VALUE * 2 - price_max = CARGO_CRATE_VALUE * 5 - stock_max = 1 - availability_prob = 25 diff --git a/code/modules/cargo/markets/market_items/weapons.dm b/code/modules/cargo/markets/market_items/weapons.dm index 12241450ba59a..94aa533c26e3f 100644 --- a/code/modules/cargo/markets/market_items/weapons.dm +++ b/code/modules/cargo/markets/market_items/weapons.dm @@ -92,3 +92,12 @@ price_max = CARGO_CRATE_VALUE * 50 stock_max = 1 availability_prob = 15 + +/datum/market_item/weapon/giant_wrench_parts + name = "Big Slappy parts" + desc = "Cheap illegal Big Slappy parts. The fastest and statistically most dangerous wrench." + item = /obj/item/weaponcrafting/giant_wrench + price_min = CARGO_CRATE_VALUE * 2 + price_max = CARGO_CRATE_VALUE * 5 + stock_max = 1 + availability_prob = 25