From 8a75d59db2b7766498c135199d6494b8312a5c6b Mon Sep 17 00:00:00 2001 From: keronshb Date: Sat, 30 Jan 2021 15:59:59 -0500 Subject: [PATCH 1/2] Meathook tweaks Changes some values to make it a bit more fair. --- code/modules/mining/lavaland/necropolis_chests.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 9c39601b4e..4475dd9123 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -522,7 +522,7 @@ max_charges = 1 item_flags = NEEDS_PERMIT | NOBLUDGEON w_class = WEIGHT_CLASS_BULKY - force = 18 + force = 15W /obj/item/ammo_casing/magic/hook name = "hook" @@ -536,11 +536,10 @@ icon_state = "hook" icon = 'icons/obj/lavaland/artefacts.dmi' pass_flags = PASSTABLE - damage = 25 - armour_penetration = 100 + damage = 15 + armour_penetration = 10 damage_type = BRUTE hitsound = 'sound/effects/splat.ogg' - knockdown = 30 var/chain /obj/item/projectile/hook/fire(setAngle) From 68b65c3f93259a2f80ebd9786947be16994ebd67 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sat, 30 Jan 2021 16:19:09 -0500 Subject: [PATCH 2/2] Fixes some error, re adds knockdown should prevent item drops --- code/modules/mining/lavaland/necropolis_chests.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 4475dd9123..6af1c2118c 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -522,7 +522,7 @@ max_charges = 1 item_flags = NEEDS_PERMIT | NOBLUDGEON w_class = WEIGHT_CLASS_BULKY - force = 15W + force = 15 /obj/item/ammo_casing/magic/hook name = "hook" @@ -538,6 +538,7 @@ pass_flags = PASSTABLE damage = 15 armour_penetration = 10 + knockdown = 5 damage_type = BRUTE hitsound = 'sound/effects/splat.ogg' var/chain