From e35a6e9cba827418b3497bb289c798481696d06d Mon Sep 17 00:00:00 2001 From: Martinpachu <86135885+Martinpachu@users.noreply.github.com> Date: Sun, 12 May 2024 21:20:16 -0300 Subject: [PATCH] Granularizes riot shields similarly to armor and guns. (#2961) ## About The Pull Request as it says! 600 credits for one riot shield ## Why It's Good For The Game good for similar reasons the other ones were you dont get more riot shields than you ened and people might use them more this way :) ## Changelog :cl: tweak: Riot shield crates now contain only one shield but are priced at 600 credits. /:cl: --- code/modules/cargo/packs/sec_supply.dm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/code/modules/cargo/packs/sec_supply.dm b/code/modules/cargo/packs/sec_supply.dm index 023ab5ee853f..8ff09a5dc38a 100644 --- a/code/modules/cargo/packs/sec_supply.dm +++ b/code/modules/cargo/packs/sec_supply.dm @@ -56,11 +56,9 @@ /datum/supply_pack/sec_supply/riotshields name = "Riot Shields Crate" - desc = "For when the greytide gets really uppity. Contains three riot shields." - cost = 2000 - contains = list(/obj/item/shield/riot, - /obj/item/shield/riot, - /obj/item/shield/riot) + desc = "Contains a riot shield, effective at holding back hostile fauna, xenofauna, or large crowds." + cost = 600 + contains = list(/obj/item/shield/riot) crate_name = "riot shields crate" /datum/supply_pack/sec_supply/survknives