From 81878d9ea241c0a645686635d16e2908567642f1 Mon Sep 17 00:00:00 2001 From: Huz2e Date: Sat, 9 Nov 2024 22:57:02 +0300 Subject: [PATCH] no slowdown --- .../features/revert_spacesuits/spacesuits.dm | 23 +++++++++++++++++++ massmeta/modular_meta.dm | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 massmeta/features/revert_spacesuits/spacesuits.dm diff --git a/massmeta/features/revert_spacesuits/spacesuits.dm b/massmeta/features/revert_spacesuits/spacesuits.dm new file mode 100644 index 0000000000000..2fc7a08348335 --- /dev/null +++ b/massmeta/features/revert_spacesuits/spacesuits.dm @@ -0,0 +1,23 @@ +/obj/item/clothing/head/helmet/space + slowdown = 0 + +/obj/item/clothing/suit/space + slowdown = 0.7 + +/obj/item/clothing/head/helmet/space/nasavoid/old + slowdown = 0 + +/obj/item/clothing/suit/space/nasavoid/old + slowdown = 3.5 + +/obj/item/clothing/head/helmet/space/fragile + slowdown = 0 + +/obj/item/clothing/suit/space/fragile + slowdown = 1.5 + +/obj/item/clothing/head/helmet/space/orange + slowdown = 0 + +/obj/item/clothing/suit/space/orange + slowdown = 1 diff --git a/massmeta/modular_meta.dm b/massmeta/modular_meta.dm index e30ce750d4c1c..7f0725b80b233 100644 --- a/massmeta/modular_meta.dm +++ b/massmeta/modular_meta.dm @@ -98,3 +98,5 @@ //Testicular_torsion wizard #include "code\modules\spells\spell_types\touch\testicular_torsion.dm" #include "code\modules\antags\wizard\equipment\spellbook_entries\offensive.dm" + +#include "features\revert_spacesuits\spacesuits.dm"