From 284c562bc04d43c0fad83543a841ee2209da9052 Mon Sep 17 00:00:00 2001 From: DZD Date: Wed, 29 Jul 2015 18:57:39 -0400 Subject: [PATCH] Plasmamen - Mining plasmaman spacesuit now has the same slowdown as a mining RIG, but can now be upgraded with Goliath hide plates. --- code/modules/clothing/spacesuits/plasmamen.dm | 1 + code/modules/mob/living/simple_animal/hostile/mining_mobs.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm index aaee0631897..df4ef935720 100644 --- a/code/modules/clothing/spacesuits/plasmamen.dm +++ b/code/modules/clothing/spacesuits/plasmamen.dm @@ -194,6 +194,7 @@ name = "plasmaman miner suit" icon_state = "plasmamanMiner_suit" armor = list(melee = 40, bullet = 5, laser = 10, energy = 5, bomb = 50, bio = 100, rad = 50) + slowdown = 2 /obj/item/clothing/head/helmet/space/eva/plasmaman/miner name = "plasmaman miner helmet" diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm index 45d24e0dc6a..adff2c17f97 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm @@ -461,7 +461,7 @@ /obj/item/asteroid/goliath_hide/afterattack(atom/target, mob/user, proximity_flag) if(proximity_flag) - if(istype(target, /obj/item/clothing/suit/space/rig/mining) || istype(target, /obj/item/clothing/head/helmet/space/rig/mining)) + if(istype(target, /obj/item/clothing/suit/space/rig/mining) || istype(target, /obj/item/clothing/head/helmet/space/rig/mining) || istype(target, /obj/item/clothing/suit/space/eva/plasmaman/miner) || istype(target, /obj/item/clothing/head/helmet/space/eva/plasmaman/miner)) var/obj/item/clothing/C = target var/current_armor = C.armor if(current_armor.["melee"] < 80)