From 8c70a61e92535ff3287b9a0033095eb763b83d44 Mon Sep 17 00:00:00 2001 From: Martinpachu <86135885+Martinpachu@users.noreply.github.com> Date: Mon, 26 Feb 2024 07:40:41 -0300 Subject: [PATCH] Kills combat knife crate and replaces it with survival knives (#2736) ## About The Pull Request As the name says!!!!! ## Why It's Good For The Game Holdover from TG, massively overpriced for today's shiptest and combat knives are being kept as a higher-tier loot item. ## Changelog :cl: balance: Changes combat knives in cargo to survival knives and cheapens their crate. /:cl: --- code/modules/cargo/packs/sec_supply.dm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/cargo/packs/sec_supply.dm b/code/modules/cargo/packs/sec_supply.dm index 5c0ec7b26964..023ab5ee853f 100644 --- a/code/modules/cargo/packs/sec_supply.dm +++ b/code/modules/cargo/packs/sec_supply.dm @@ -63,13 +63,13 @@ /obj/item/shield/riot) crate_name = "riot shields crate" -/datum/supply_pack/sec_supply/combatknives - name = "Combat Knives Crate" - desc = "Contains three sharpened combat knives. Each knife guaranteed to fit snugly inside any galactic-standard boot." - cost = 2500 - contains = list(/obj/item/kitchen/knife/combat, - /obj/item/kitchen/knife/combat, - /obj/item/kitchen/knife/combat) +/datum/supply_pack/sec_supply/survknives + name = "Survival Knives Crate" + desc = "Contains three sharpened survival knives. Each knife guaranteed to fit snugly inside any galactic-standard boot." + cost = 500 + contains = list(/obj/item/kitchen/knife/combat/survival, + /obj/item/kitchen/knife/combat/survival, + /obj/item/kitchen/knife/combat/survival) crate_name = "combat knife crate" /datum/supply_pack/sec_supply/fire